How do you perform the equivalent of Oracle's DESCRIBE TABLE in PostgreSQL (using the psql command)?
DESCRIBE TABLE
Try this (in the psql command-line tool):
psql
d+ tablename
See the manual for more info.
548k questions
547k answers
4 comments
86.3k users