Answers for "postgres show table fields"

SQL
2

how to list columns for particular tables in postgresql

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

postgresql how to show table names

SELECT table_name
  FROM information_schema.tables
 WHERE table_schema='public'
   AND table_type='BASE TABLE';
Posted by: Guest on August-17-2021
3

describe table postgres

postgres=# \d schema.tablename;
Posted by: Guest on June-24-2020
3

show details of table postgres

postgres=# \d tablename;
Posted by: Guest on July-15-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language