0
0

[SQL]DBから特定のカラムを持つテーブルを検索する

Posted at

はじめに

カラムがどこのテーブルにあるか探すためのSQLをコードとして残します。
MySQL、PostgreSQLでも動作します。

コード

SELECT table_name, column_name
FROM information_schema.columns
WHERE column_name LIKE'%カラム名%';

参考

0
0
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
0
0