Home  >  Article  >  Database  >  创建存储程序和函数_MySQL

创建存储程序和函数_MySQL

WBOY
WBOYOriginal
2016-05-31 08:48:22971browse

CREATE PROCEDURE和CREATE FUNCTION

mysql> delimiter //

 

mysql> CREATE PROCEDURE simpleproc (OUT param1 INT)

   -> BEGIN

   ->   SELECT COUNT(*) INTO param1 FROM t;

   -> END

   -> //

Query OK, 0 rows affected (0.00 sec)

 

mysql> delimiter ;

 

mysql> CALL simpleproc(@a);

Query OK, 0 rows affected (0.00 sec)

 

mysql> SELECT @a;

+------+

| @a   |

+------+

| 3    |

+------+

1 row in set (0.00 sec)



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn