テーブルの各カラムコメント確認1
1 2 3 |
> show full columns from テーブル名; |
テーブル自体のコメント確認1
1 2 3 |
> show table status like テーブル名; |
テーブル自体のコメント確認2
他にもinformation schemaを使って、次の方法でも可。
1 2 3 |
> select table_name, table_comment from information_schema.tables where table_schema = database(); |
コメント