如何在 PhpMyAdmin 中列出/查看存储过程

发布于 2024-11-07 15:56:44 字数 171 浏览 0 评论 0原文

我想列出或查看在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静赏你的温柔 2024-11-14 15:56:44

看一下 information_schema。根据您的情况,转到例程表。

http://dev.mysql.com/doc/refman/5.1/en/routines- table.html

如果您想列出所有存储过程,您可以使用此查询

select * 
from information_schema.routines
where routine_type = 'procedure'

,以便将结果限制为特定数据库:

select * 
from information_schema.routines
where routine_type = 'procedure' and routine_schema = 'your_db'

您可以在routine_definition 字段中找到存储过程的内容。

此外,请看一下:

show create procedure stored_procedure_name

您将在“创建过程”字段中找到存储过程内容。

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

select * 
from information_schema.routines
where routine_type = 'procedure'

In order to limit the result to a specific database:

select * 
from information_schema.routines
where routine_type = 'procedure' and routine_schema = 'your_db'

You can find the content of your stored procedures within the routine_definition field.

Moreover take a look at:

show create procedure stored_procedure_name

you'll find stored procedure content within 'Create Procedure' field.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文