Answers for "column names in postgresql"

SQL
1

postgres get columns names

SELECT *
  FROM information_schema.columns
 WHERE table_name   = 'your_table'
     ;
Posted by: Guest on March-12-2021
2

SQL column name Postgre

SELECT *
  FROM information_schema.columns
 WHERE table_schema = 'your_schema'
   AND table_name   = 'your_table'
     ;
Posted by: Guest on June-17-2020

Code answers related to "column names in postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language