发布网友 发布时间:2022-04-22 00:14
共4个回答
热心网友 时间:2024-01-02 04:39
创建存储过程
mysql> delimiter $ -- delimiter $是设置 $为命令终止符号,代替默认的分号,因为分号有其他用处.
mysql> create procere 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);
热心网友 时间:2024-01-02 04:40
MySQL_GUI_Tools_5.0或者Navicat For MySQl V9.0.10 都可以,都是汉化版的,能看懂汉字就会用
热心网友 时间:2024-01-02 04:40
MySQL云数据库创建、配置与使用教程,五秒钟创建属于自己的mysql云数据库,申请地址:xmjar.cn
热心网友 时间:2024-01-02 04:41
给你发了个图片不知道你是不是用的这个可是化工具!