What is the PostgreSQL equivalent of 'SHOW TABLES;' in MariaDB/MySQL?

The PostgreSQL equivalent of SHOW TABLES; in MariaDB/MySQL is:

example.sql
\dt

\dt means display tables and will list all tables in the current database.


Check out similar posts by category: Database