I am trying to learn PostgreSQL after already having used MySQL and Oracle for some time now. It seems that using psql is a step backwards...
How do you perform the psql equivalent of a "DESCRIBE TABLE"?
|
|
I am trying to learn PostgreSQL after already having used MySQL and Oracle for some time now. It seems that using psql is a step backwards... How do you perform the psql equivalent of a "DESCRIBE TABLE"? |
||
|
|
|
|
|
||
|
|
|
The psql equivalent of "DESCRIBE TABLE" is "\d table". See the psql portion of the PostgreSQL manual for more details. |
||
|
|
|
|
It looks like you can do that with a psql slash command:
|
||
|
|
|
|
In addition to the PostgreSQL way (\d 'something' or \dt 'table' or \ds 'sequence' and so on) The SQL standard way, as shown here:
It's supported by many db engines. |
||
|
|
|
If you want to obtain it from query instead of psql, you can query the catalog schema. Here's a complex query that does that:
It's pretty complex but it does show you the power and flexibility of the PostgreSQL system catalog and should get you on your way to pg_catalog mastery ;-). Be sure to change out the %s's in the query. The first is Schema and the second is the table name. |
||
|
|