简体   繁体   中英

MySQL equivalent to Oracle's “describe_procedure”

Is there an equivalent to Oracle's describe_procedure (which returns resultset of all parameters) for MySQL?

I'm aware of the mysql.proc table that has a param_list attribute storing a comma separated string attribute of params "param_list". However, I'd be interested to see if there was an equivalent to the describe_procedure of Oracle?

Yes :-

show create procedure $PROCEDURE_NAME;

docs:- http://dev.mysql.com/doc/refman/5.0/en/show-create-procedure.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM