PostgresSQL 查看当前schema下全部的函数/存储过程

select
routine_name 
from information_schema.routines
where routine_catalog = 'YourDBName'
and routine_schema = 'YourSchemaName'
order by routine_name;
相关文章
相关标签/搜索