CREATE TABLE Customer(
custID INT NOT NULL AUTO_INCREMENT,
custName VARCHAR(255) NOT NULL,
custAddress VARCHAR(255) NOT NULL,
CONSTRAINT pk_Customer PRIMARY KEY (custID)
),
我有這個作爲數據庫的一部分,我設置了,但每當我嘗試運行.sql文件,這是包含在,我得到以下錯誤:MySQL的語法錯誤
ERROR 1064 (42000): 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 '
CREATE TABLE Customer(
custID INT NOT NULL AUTO_INCREMENT,
custName VARCHAR(' at line 8
任何想法有什麼不對?謝謝。
除了最後的','這個工作正常,我 – 2013-03-21 03:35:30