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

本文介绍了一段创建商品信息表的SQL语句,并分析了运行时报错的原因。指出使用不正确的符号来引用表字段可能导致语法错误,并给出了正确的写法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

先来看这段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

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




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值