我有一个名为 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
知道我做错了什么吗?根据查询文档,我的查询是正确的。我显然错过了一些东西。
key
是保留字,必须对其进行分隔: