mysql引号与esc键下方键

navicat导出数据表发现建表语句如下:

create table `product_category` (
    `category_id` int not null auto_increment,
    `category_name` varchar(64) not null 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 comment '修改时间',
    primary key (`category_id`),
    unique key `uqe_category_type` (`category_type`)
) comment '类目表';

表名,字段的两侧是esc键下方的那个键,而注释用的才是引号,符号写错将无法运行

原文地址:https://www.cnblogs.com/yanguobin/p/11534550.html