MySQL建表两个单引号报错_mysql建表报错,查手册看不懂,求解?

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 20:05   2452   0

创建带索引的数据库表需要为表名和属性添加反单引号,并且你当前的primary key的位置需要调整一下:

create table `abc`(

`id` int unsigned auto_increment,

`usename` char(20) not null default '',

`gender` char(1) not null default '',

`weight` tinyint unsigned not null default 0,

`birth` date not null default 0,

`salary` decimal(8,2) not null default '000000.00',

`lastlogin` timestamp not null default 0,

`intro` varchar(1500) not null default '',

primary key (`id`)

)engine myisam charset=utf8;

我刚刚试了一下,除了primary key其他的属性和表名不加反单引号也可以,即这样也是可以的:

create table abc(

id int unsigned auto_increment,

usename char(20) not null default '',

gender char(1) not null default '',

weight tinyint unsigned not null default 0,

birth date not null default 0,

salary decimal(8,2) not null default '000000.00',

lastlogin timestamp not null default 0,

intro varchar(1500) not null default '',

primary key (`id`)

)engine myisam charset=utf8;

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP