mysql初学者的小坑``和'' 的区别

来源:互联网 发布:一年java专业技能描述 编辑:程序博客网 时间:2024/05/16 18:59

先来看这段sql语句

create table 'product_info'(
    'product_id' varchar(32) not null,
    'product_name' varchar(64) not null comment '商品名称',
    'product_price' decimal(8,2) not null comment '单价',
    'product_stock' int not null comment '库存',
    'product_description' varchar(64) '描述',
    'product_icon' varchar(512) comment '小图',
    'category_type' int not null comment '类目编号',
    'create_time' timestamp not null default current_timestamp comment '创建时间',
    'update_time' timestamp not null default current_timestamp on update current_timestamp
    commont '修改时间',
    primary key('product_id')
) comment '商品表';

乍一看这段代码是没问题的,但运行时它却会报错:

 Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''product_info'(  'product_id' varchar(32) not null,     'product_name' varchar(6' at line 1    0.000 sec

找了半天,原来是 ‘’ 和 `` 的 问题,其中 ‘’是用来引用插入的数据=或者填写注释等用的,而 `` 是用来标识表字段的。




原创粉丝点击