What\'s the equivalent to show tables (from MySQL) in PostgreSQL?
show tables
You can list the tables in the current database with \dt.
\dt
Fwiw, \d tablename will show details about the given table, something like show columns from tablename in MySQL, but with a little more information.
\d tablename
show columns from tablename