how to check the tables in postgresql code example
Example 1: get all tables postgres
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'public'
ORDER BY table_name;
Example 2: show details of table postgres
postgres=# \d tablename;