PostgreSQL query custom function

PostgreSQL query custom function


PostgreSQL query custom function

-- PostgreSQL查自定义函数
select *
  from pg_proc
 where proowner = (select usesysid 
                     from pg_user 
                    where usename = CURRENT_USER)
  order by proname;

Guess you like

Origin blog.csdn.net/tttzzzqqq2018/article/details/132296135