Answers for "how to control the list in postgresql"

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
0

postgresql list columns

SELECT * FROM information_schema.columns 
WHERE table_schema = 'your_schema'
  AND table_name = 'your_table';
Posted by: Guest on April-30-2021

Code answers related to "how to control the list in postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language