mysql创建存储过程

来源:互联网 发布:大数据 涂子沛 mobi 编辑:程序博客网 时间:2024/06/07 07:10
drop procedure if exists vv;create procedure vv()BEGIN select * from t_dept;ENDcall vv()   // 调用函数
原创粉丝点击