Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

how to list columns for particular tables in postgresql

SELECT *
  FROM information_schema.columns
 WHERE table_schema = 'your_schema'
   AND table_name   = 'your_table'
     ;
Source by dba.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #list #columns #tables #postgresql
ADD COMMENT
Topic
Name
3+9 =