摘要:
MYSQL怎样设置字段为不可重复?可以用UNIQUE索引 语法如下: ALTER TABLE `TableName` ADD UNIQUE INDEX IndexName(`Fie...
MYSQL怎样设置字段为不可重复?
可以用UNIQUE索引 语法如下: ALTER TABLE `TableName` ADD UNIQUE INDEX IndexName(`FieldName`);
MySQL给字段添加注释?
在MySQL数据库中,字段或列的注释是用属性comment来添加。创建新表的脚本中,可在字段定义脚本中添加comment属性来添加注释。
示例代码如下:
图片来源:网络
create table test(id int not null default 0 comment '用户id'
)如果是已经建好的表,也可以用修改字段的命令,然后加上comment属性定义,就可以添加上注释了。示例代码如下:
alter table testchange column id id int not null default 0 comment '测试表id' 给表的字段或列添加注释已经知道了,那么如何来查看已有表的所有字段的注释呢?
可以用命令:show full columns from table 来查看,示例如下:
show full columns from test;
在MYSQL数据库,数据表中新增字段,sql语句该怎么写?
ALTER TABLE `你的表名` ADD `monthclick` INT NOT NULL , ADD `weekclick` INT NOT NULL ;