PostgreSQL So zeigen Sie Tabellennamen
SELECT table_name
FROM information_schema.tables
WHERE table_schema='public'
AND table_type='BASE TABLE';
Impossible Ibis
SELECT table_name
FROM information_schema.tables
WHERE table_schema='public'
AND table_type='BASE TABLE';
postgres=# \d schema.tablename;
postgres=# \d tablename;
postgres=# \dt+Code language: PHP (php)