如何创建MySQL存储过程

如何创建MySQL存储过程,第1张

创建存储过程

mysql>delimiter $ -- delimiter $是设置 $为命令终止符号,代替默认的分号,因为分号有其他用处.

mysql>create procedure sp_test(IN pi_id int, OUT po_name varchar(10))

->begin

->select * from test.tb_test

->select tb_test.name into po_name from test.tb_test where tb_test.id = pi_id

->end

->$

Query OK, 0 rows affected (0.00 sec)

mysql>delimiter -- 恢复分号作为分隔终止符号

5.调用存储过程

mysql>set@po_name=''

Query OK, 0 rows affected (0.00 sec)

mysql>call sp_test(1,@po_name)

1 用mysql客户端登入

2 选择数据库

mysql>use test

3 查询当前数据库有哪些存储过程

mysql>show procedure status where Db='test'

4 创建一个简单的存储过程

mysql>create procedure hi() select 'hello'

5 存储过程创建完毕,看怎么调用它

mysql>call hi()

显示结果 mysql>call hi()

+-------+

| hello |

+-------+

| hello |

+-------+

1 row in set (0.00 sec) Query OK, 0 rows affected (0.01 sec)

6 一个简单的储存过程就成功了


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8691235.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-19
下一篇 2023-04-19

发表评论

登录后才能评论

评论列表(0条)

保存