大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
在MySQL数据库中,
“只有客户发展了,才有我们的生存与发展!”这是创新互联建站的服务宗旨!把网站当作互联网产品,产品思维更注重全局思维、需求分析和迭代思维,在网站建设中就是为了建设一个不仅审美在线,而且实用性极高的网站。创新互联对成都网站建设、成都网站设计、网站制作、网站开发、网页设计、网站优化、网络推广、探索永无止境。
字段或列的注释是用属性comment来添加。
创建新表的脚本中,
可在字段定义脚本中添加comment属性来添加注释。
示例代码如下:
create table test(
id int not null default 0 comment '用户id'
)
如果是已经建好的表,
也可以用修改字段的命令,然后加上comment属性定义,就可以添加上注释了。
示例代码如下:
alter table test
change column id id int not null default 0 comment '测试表id'
给表的字段或列添加注释已经知道了,
那么如何来查看已有表的所有字段的注释呢?
可以用命令:show full columns from table 来查看,
示例如下:
show full columns from test;
select * from information_schema.TABLES
里面有个TABLE_COMMENT,就是表的注释,想批量修改直接update这个表的这个字段;
同理,字段的注释在information_schema.COLUMNS这个表中。
$ cat create_table.sql
create table test1
(
field_name int comment '字段的注释'
)comment='表的注释';
$ sed "s/comment.\'.*\'//" create_table.sql
create table test1
(
field_name int
);