query to list all columns in a table postgres code example
Example 1: how to list columns for particular tables in postgresql
SELECT *
FROM information_schema.columns
WHERE table_schema = 'your_schema'
AND table_name = 'your_table'
;
Example 2: postgresql list columns
SELECT * FROM information_schema.columns
WHERE table_schema = 'your_schema'
AND table_name = 'your_table';