LoginSignup
1
1

More than 5 years have passed since last update.

テーブル名列挙

Posted at

テーブル名を列挙する際に利用する。like部に検索テーブル名称を入力する

SQL
SELECT
    *
FROM
    pg_stat_user_tables
WHERE
    relname like '%abcde%'
ORDER BY
    relname;
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1