MySQL存储过程的查询命令介绍
程序员文章站
2022-06-17 18:26:27
如下所示:select name from mysql.proc where db='数据库名';或者select routine_name from information_schema.routi...
如下所示:
select name from mysql.proc where db='数据库名';
或者
select routine_name from information_schema.routines where routine_schema='数据库名';
或者
show procedure status where db='数据库名'; show create procedure 数据库.存储过程名;
补充:mysql存储过程-循环遍历查询到的结果集
1、创建存储过程
根据mysql的语法创建存储过程,要注意的是如果循环遍历查询到的结果集,取出结果集中的数据做操作。
create definer=`root`@`%` procedure `alter_view_counts`() begin #声明结束标识 declare end_flag int default 0; declare albumid bigint; #声明游标 album_curosr declare album_curosr cursor for select album_id from album; #设置终止标志 declare continue handler for not found set end_flag=1; #打开游标 open album_curosr; #遍历游标 repeat #获取当前游标指针记录,取出值赋给自定义的变量 fetch album_curosr into albumid; #利用取到的值进行数据库的操作 update album set album.views_count= (select sum(light_chat.views_count) from `light_chat` where light_chat.album_id = albumid) where album.album_id = albumid; # 根据 end_flag 判断是否结束 until end_flag end repeat; #关闭游标 close album_curosr; end
2,调用存储过程
call alter_view_counts()
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。