查看存储过程 涉及系统表pg_proc;查看所有的存储过程 select * from pg_proc where proname='fun_name'; 其中参数proname是你写的存储的名称 以上sql可以导出当前数据库中的所有存储过程。