Answers for "postgres see all functions"

SQL
0

how to list function in psql

SELECT routine_name 
FROM information_schema.routines 
WHERE routine_type='FUNCTION' 
  AND specific_schema='public'
  AND routine_name LIKE 'aliasmyfunctions%';
Posted by: Guest on June-12-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language