What\'s the equivalent to show tables (from MySQL) in PostgreSQL?
show tables
First login as postgres user:
sudo su - postgres
connect to the required db: psql -d databaseName
psql -d databaseName
\dt would return the list of all table in the database you're connected to.
\dt