LoginSignup
0
0

More than 3 years have passed since last update.

データベースの中から特定のカラムをSELECTする

Posted at

このカラム、他にどこのテーブルで使ってたっけ:rolling_eyes:
と思った時に使えるSQLです。

select table_name,column_name user_tab_columns
where column_name='検索するカラム名';

table_name = テーブル名
column_name = カラム名
user_tab_columns = データベースの中にあるカラム

:point_up:使っているDBタイプで少し変わります

Oracle
user_tab_columns

MySQL
information_schema.cloumns

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