PostgresSQL 查看當前schema下全部的函數/存儲過程

select
routine_name 
from information_schema.routines
where routine_catalog = 'YourDBName'
and routine_schema = 'YourSchemaName'
order by routine_name;
相關文章
相關標籤/搜索