MySQL建表語句 mysql建表如何加注釋?
mysql建表如何加注釋?MySQL給字段添加注釋?在MySQL數(shù)據(jù)庫中,字段或列的注釋添加了屬性comment。在創(chuàng)建新表的腳本中,可以通過在字段定義腳本中添加comment屬性來添加注釋。示例代碼
mysql建表如何加注釋?
MySQL給字段添加注釋?
在MySQL數(shù)據(jù)庫中,字段或列的注釋添加了屬性comment。在創(chuàng)建新表的腳本中,可以通過在字段定義腳本中添加comment屬性來添加注釋。示例代碼如下:create table test(id int not null default 0 comment “user id”)如果是生成表,還可以使用命令修改字段,然后添加comment屬性定義來添加注釋。示例代碼如下:alter table testrange column id int not null default 0 comment“test table id”您已經(jīng)知道如何向表的字段或列添加注釋,那么如何查看現(xiàn)有表的所有字段的注釋?您可以使用命令:show full columns from table查看它。示例如下:顯示test的整列
mysql字段的注釋有什么用?
為了方便您或其他人了解此字段的功能
使用以下方法1編寫注釋create table test1(field)創(chuàng)建表時使用“Name int comment”field comment“)comment=”table comment”2 modify table comment alter表test1注釋“修改的表注釋”