I would like to list all tables in the liferay database in my PostgreSQL install. How do I do that?
liferay
I would like to execute SELECT * FROM applicat
SELECT * FROM applicat
Connect to the database, then list the tables:
\c liferay \dt
That's how I do it anyway.
You can combine those two commands onto a single line, if you prefer: