TECHIES WORLD

For Techs.... Techniques.... Technologies....

CpanelLinux

How to list tables in PostgreSQL

We can use \dt query from the PostgreSQL shell to obtain the list tables.

postgres=# \dt

We can use the \dt+ command to get more detailed information.

postgres=# \dt+

That's all…

Leave a Reply