how to get the column details of a table in postgresql query code example
Example: how to list columns for particular tables in postgresql
SELECT *
FROM information_schema.columns
WHERE table_schema = 'your_schema'
AND table_name = 'your_table'
;