MariaDB テーブルを指定してCOLUMNの情報を取得する
環境
CentOS Stream release 9
MariaDB 10.10.2
構文
select * from information_schema.COLUMNS
where
where table_name = “テーブル名"
テーブル名を指定してCOLUMNの情報を取得する場合は、「information_schema」の「COLUMNS」を確認します。
操作例
「user」というtableを指定してCOLUMNの情報を取得します。
SQL構文
select * from information_schema.COLUMNS where table_name = "user"