PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come elencare le tabelle nel database corrente usando PostgreSQL

Per elencare le tabelle nel database corrente, puoi eseguire \dt comando, in psql :

Se invece vuoi eseguire una query SQL, esegui questo:

SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'public'
ORDER BY table_name;