gpt4 book ai didi

mysql - Mysql中通过注释选择存储过程名称

转载 作者:行者123 更新时间:2023-11-29 04:33:55 25 4
gpt4 key购买 nike

如何在Mysql中通过注释获取存储过程名称?

例如我需要这样的东西:

    SELECT *
FROM stored_procedures
WHERE comment LIKE '%something%''

最佳答案

您可以使用以下代码从information_schema获取存储过程名称:

SELECT routine_schema,      -- database/schema wherein the object resides
routine_name, -- the name of the function/procedure
routine_type, -- PROCEDURE indicates a procedure, FUNCTION indicates a function
routine_definition -- code underlying the sp
routine_comment -- some human readable comment on the routine
FROM information_schema.routines
WHERE routine_comment LIKE '%test%';

关于mysql - Mysql中通过注释选择存储过程名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50133058/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com