我正在尝试建立一个简单的数据库,以便我可以练习我的 PHP,我正在从书中复制它,这是代码:
USE testeDB;
CREATE TABLE test(
id INT not null AUTO_INCREMENT,
nome VARCHAR (25),
telefone VARCHAR (12);
PRIMARY KEY (id),
);
INSERT INTO teste VALUES ('', 'Joaquim', '1111');
INSERT INTO teste VALUES ('', 'Carlos', '2233');
INSERT INTO teste VALUES ('', 'Antonio', '3333');
INSERT INTO teste VALUES ('', 'Roque Santeiro', '6969');
我使用 phpmyadmin 创建数据库,但是当我运行该代码来创建表时,我收到以下错误:
#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 '' at line 4
它一定很简单,但我不知道是什么问题。有人可以帮助我吗?