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.
2.1m questions
2.1m answers
60 comments
57.0k users