我不断收到此错误消息:
#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
'`contact` VALUES (0, 'Chris', 'rember', 'chris@fox.com')' at line 1
对于以下代码:
DROP TABLE IF EXISTS contact;
CREATE TABLE contact (
contactID INT PRIMARY KEY,
name VARCHAR (50),
company VARCHAR (30),
email VARCHAR (50)
);
INSERT INFO contact VALUES
(0, 'Chris', 'rember', 'chris@fox.com');
SELECT * FROM contact;
这是我的第一个数据库,所以我很困惑,我尝试在联系人周围放回刻度,但这似乎没有任何作用。
任何线索?