mysql存储过程
摘要:
1.创建存储过程语法 CREATE PROCEDURE 存储过程名 [(参数)] begin --语句块 end; 2.创建无参存储过程 CREATE PROCEDURE db_pro() begin SELECT * from person; end;--执行存储过程:CALL db_pro(); 阅读全文
posted @ 2020-11-19 23:24 Difcipo 阅读(75) 评论(0) 推荐(0) 编辑
posted @ 2020-11-19 23:24 Difcipo 阅读(75) 评论(0) 推荐(0) 编辑
posted @ 2020-11-19 18:56 Difcipo 阅读(79) 评论(0) 推荐(0) 编辑
posted @ 2020-11-19 18:14 Difcipo 阅读(233) 评论(0) 推荐(0) 编辑