コンソール上で
$ psql mydb
などのように接続したあと、
\d
と入力するか、
select * from pg_tables where not tablename like 'pg%' order by tablename;
とクエリを投げると、DB上のテーブル名を取得できる。
コンソール上で
$ psql mydb
などのように接続したあと、
\d
と入力するか、
select * from pg_tables where not tablename like 'pg%' order by tablename;
とクエリを投げると、DB上のテーブル名を取得できる。