當我嘗試向表格中插入新條目時,我總是收到語法錯誤,但似乎無法找出原因。 對於這裏首先是在.schema:將新數據插入表格時出現語法錯誤
CREATE TABLE collection (
id int primary key not null,
album text not null,
artist text not null,
year int not null,
cover text
);
這是我用添加條目的行:
sqlite> insert into collection(115,"houses of the holy","led zeppelin", 1973, "junk");
所有值匹配:ID INT,專輯的文字,藝術家文,年份int,封面文字。但終端剛剛吐出以下語法錯誤:
Error: near "115": syntax error
我還測試了把引號內的國際價值,但我剛剛結束了:
Error: near ";": syntax error
可有人請幫我指點迷津我做錯了什麼?
您正在使用雙引號來代替單引號。 –