如何在 PhpMyAdmin 中列出/查看存储过程
我想列出或查看在 PhpMyAdmin 中创建的存储过程。我已经创建了 1 个存储过程并执行它,但是我如何查看或修改特定的存储过程是否可能,请解释使用 PhpMyAdmin 创建存储过程的良好做法,或者还有其他方法(任何其他工具)进行编程对于存储过程,我是 MySql 和 PhpMyAdmin 的新手。
请帮忙
I want to list or view created stored procedure in PhpMyAdmin. I have created 1 stored procedure and execute that also but how can i view or modify particular stored procedure is it possible or not and please explain its good practise to create stored procedure using PhpMyAdmin or what are the other ways(any other tool) to program with stored procedures , i am new to MySql and PhpMyAdmin .
Please Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 information_schema。根据您的情况,转到例程表。
http://dev.mysql.com/doc/refman/5.1/en/routines- table.html
如果您想列出所有存储过程,您可以使用此查询
,以便将结果限制为特定数据库:
您可以在routine_definition 字段中找到存储过程的内容。
此外,请看一下:
您将在“创建过程”字段中找到存储过程内容。
Take a look at the information_schema. In your case to the routines table.
http://dev.mysql.com/doc/refman/5.1/en/routines-table.html
If you want to list all stored procedures you can use this query
In order to limit the result to a specific database:
You can find the content of your stored procedures within the routine_definition field.
Moreover take a look at:
you'll find stored procedure content within 'Create Procedure' field.