What is the PostgreSQL equivalent of 'SHOW TABLES;' in MariaDB/MySQL?
The PostgreSQL equivalent of SHOW TABLES;
in MariaDB/MySQL is:
\dt
\dt
means display tables
and will list all tables in the current database.
The PostgreSQL equivalent of SHOW TABLES;
in MariaDB/MySQL is:
\dt
\dt
means display tables
and will list all tables in the current database.