mysql中的 COMMENT 有什么作用吗?
比如这段代码:CREATETABLE`hg_pay_exchange`(`id`int(10)unsignedNOTNULLAUTO_INCREMENTCOMMENT'i...
比如这段代码:
CREATE TABLE `hg_pay_exchange` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
`module` varchar(15) NOT NULL,
`type` enum('amount','point') NOT NULL,
`number` decimal(8,2) NOT NULL
如果我要是加上 COMMENT 'id'这段在执行数据库语句是就回有错,而把 COMMENT 'id'这段去掉就不会出现错误了!
COMMENT 'id'这两句话有什么作用呀?
我要是把 COMMENT 'id'删除会影响数据操作吗? 展开
CREATE TABLE `hg_pay_exchange` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
`module` varchar(15) NOT NULL,
`type` enum('amount','point') NOT NULL,
`number` decimal(8,2) NOT NULL
如果我要是加上 COMMENT 'id'这段在执行数据库语句是就回有错,而把 COMMENT 'id'这段去掉就不会出现错误了!
COMMENT 'id'这两句话有什么作用呀?
我要是把 COMMENT 'id'删除会影响数据操作吗? 展开
3个回答
展开全部
COMMENT 是备注、注释的意思,写上COMMENT 'id'之后,在建表信息里可以看到添加的备注信息。
COMMENT 'id'删除不会影响数据操作,只是没有字段注释说明,通常字段或列名都需要加注释,以方便自己和其他同事阅读数据库表字段信息。
题主的报错不是因为 COMMENT 'id',是因为 AUTO_INCREMENT(自增)的字段只能是主键,所以要在 AUTO_INCREMENT 后面增加 PRIMARY KEY 声明主键。
扩展资料
在MySQL数据库中,字段或列的注释是用属性comment来添加。
创建新表添时,填加comment注释的示例代码如下:
create table test(id int not null default 0 comment '用户id');
已经建好的表,添加comment注释的示例代码如下:
alter table test
change column id int not null default 0 comment '测试表id' ;
2017-03-24 · 知道合伙人互联网行家
关注
展开全部
comment---备注说明的意思,如:
create table tb_test(id int comment '该列作为记录号');
就算你删除那部分,你的语句还是会有错的,因为mysql下auto_increment必须为key,改后如下:
CREATE TABLE `hg_pay_exchange` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT primary key COMMENT 'id',
`module` varchar(15) NOT NULL,
`type` enum('amount','point') NOT NULL,
`number` decimal(8,2) NOT NULL)
create table tb_test(id int comment '该列作为记录号');
就算你删除那部分,你的语句还是会有错的,因为mysql下auto_increment必须为key,改后如下:
CREATE TABLE `hg_pay_exchange` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT primary key COMMENT 'id',
`module` varchar(15) NOT NULL,
`type` enum('amount','point') NOT NULL,
`number` decimal(8,2) NOT NULL)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
comment---备注说明的意思,如:
create table tb_test(id int comment '该列作为记录号');
就算你删除那部分,你的语句还是会有错的,因为mysql下auto_increment必须为key,改后如下:
CREATE TABLE `hg_pay_exchange` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT primary key COMMENT 'id',
`module` varchar(15) NOT NULL,
`type` enum('amount','point') NOT NULL,
`number` decimal(8,2) NOT NULL)
create table tb_test(id int comment '该列作为记录号');
就算你删除那部分,你的语句还是会有错的,因为mysql下auto_increment必须为key,改后如下:
CREATE TABLE `hg_pay_exchange` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT primary key COMMENT 'id',
`module` varchar(15) NOT NULL,
`type` enum('amount','point') NOT NULL,
`number` decimal(8,2) NOT NULL)
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询