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…
For Techs.... Techniques.... Technologies....
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…