MySQL meldet einen Fehler beim Erstellen einer Tabelle. Ich kann ihn nicht verstehen, wenn ich im Handbuch nachschaue.
仅有的幸福
仅有的幸福 2017-06-06 09:52:09
0
2
664

MySQL erstellt eine Tabelle und meldet einen Fehler. Ich kann sie nicht verstehen, nachdem ich das Handbuch gelesen habe.

create table abc(
   id int unsigned  primary_key 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 '',
)engine myisam charset=utf8;

Fehlerbericht: Sie haben einen Fehler in Ihrer SQL-Syntax. Sehen Sie im Handbuch zu Ihrer MySQL-Serverversion nach, welche Syntax in der Nähe von „primary_key auto_increment,username char(20) not null default“,gender c“ in der Zeile richtig ist 3

仅有的幸福
仅有的幸福

Antworte allen(2)
伊谢尔伦

创建带索引的数据库表需要为表名和属性添加反单引号,并且你当前的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;

参考:mysql创建和删除表

Peter_Zhu

primary_key声明的不对,楼上解

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!