我有一個名為 design_designs
的表
表格包含4列:id、key、value、nonceId
#我正在嘗試執行查詢以插入表中:
INSERT INTO design_designs(key, value, nonceId) VALUES ('test key', 'test value', 'test nonce');
我得到的錯誤是:
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'key, value, nonceId) VALUES ('test key', 'test value', 'test nonce')' at line 1
知道我做錯了什麼嗎?根據查詢文檔,我的查詢是正確的。我顯然錯過了一些東西。
P粉9550636622024-04-06 09:04:08
key
是保留字,必須將其分隔:
INSERT INTO design_designs(`key`, value, nonceId) VALUES...