MariaDB 10.6にテーブルのカラムにコメントを追加する
環境
Windows10 64bit
MariaDB 10.6.4
書式
CREATE TABLE データベース名.テーブル名
(カラム名 データの型 COMMENT 'コメント内容’,…)
テーブルのカラムに関するメモとしてコメントを記述します。コメントは最大1023文字です
使用例
1.新しいテーブルを作成します
MariaDB [testdb]> create table deptbl (depid int comment '開発部署ID', depname varchar(25) comment '部署名前'); Query OK, 0 rows affected (0.309 sec)
2.テーブルのカラムに追加したコメントを確認します
MariaDB [testdb]> show create table deptbl\G *************************** 1. row *************************** Table: deptbl Create Table: CREATE TABLE `deptbl` ( `depid` int(11) DEFAULT NULL COMMENT '開発部署ID', `depname` varchar(25) DEFAULT NULL COMMENT '部署名前' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 1 row in set (0.008 sec)