Answers for "get columns and table name from postgres"

1

postgres get columns names

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

Code answers related to "get columns and table name from postgres"

Browse Popular Code Answers by Language