テーブル名取得

スポンサーリンク

いちいち忘れるので備忘録

カタログに含まれるテーブル名を全て取得するSQL、これすぐ忘れたり覚えていてもSQLServer使ってるのにオラクルの使ったりとうざいので備忘碌。

SQL Server
select name from sysobjects where xtype = 'U'; 

Oracle
select * from all_objects where object_type='TABLE';

MySQL
show tables;

PostgreSQL
select * from pg_tables where not tablename like 'pg%' order by tablename;

コメント