Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 288 Bytes

PostgreSQL.md

File metadata and controls

30 lines (20 loc) · 288 Bytes

#Enter postgresql

sudo -u <postgresqluser> psql

#Show the current database

\c

#list current tables in the current active database

\d 

#list current tables with more details in the current active database

\d+

#Exit postgresql

\q