mysql中檢視所有儲存過程和函式

2021-09-27 08:20:31 字數 1216 閱讀 9053

直接po圖和**

參考網頁

#查詢資料庫中的儲存過程

show procedure status;

#查詢資料庫中的函式

show function status;

#檢視儲存過程或函式的建立**

#mysql中檢視所有儲存過程和函式

#檢視當前所在的庫

select database();

#檢視當前使用者

select user();

#查詢資料庫中的儲存過程

show procedure status;

select `name` from mysql.proc where db = 'girls' and `type` = 'procedure';

select * from mysql.proc;

select * from mysql.proc where db = 'girls';

#查詢資料庫中的函式

show function status;

select `name` from mysql.proc where db = 'girls' and type = 'function';

select * from mysql.proc where db = 'girls' and type = 'function';

#檢視儲存過程或函式的建立**

show create procedure girls.myp1; #show create procedure 庫名.儲存過程名;

show create function girls.fun1; #show create function 庫名.函式名;

檢視mysql儲存過程 mysql檢視儲存過程函式

查詢資料庫中的儲存過程和函式 select name from mysql.proc where db xx and type procedure 儲存過程 select name from mysql.proc where db xx and type function 函式 show proce...

mysql檢視儲存過程 mysql檢視儲存過程

查詢資料庫中的儲存過程和函式 select name from mysql.proc where db xx and type procedure 儲存過程 select from mysql.proc where db xx and type procedure and name xx selec...

MySQL 檢視儲存過程和函式

用 show status 語句可以檢視儲存過程和函式的狀態,其基本的語法結構如下 show status like pattern show status 語句是 mysql 的乙個擴充套件。它返回子程式的特徵,如資料庫 名字 型別 建立者及建立和修改日期。如果沒有指定樣式,根據使用的語句,所有的...