Try inserting data into a column
P粉302484366
P粉302484366 2024-04-05 11:23:51
0
1
328

I have a table called design_designs The table contains 4 columns: id, key, value, nonceId

I'm trying to run a query to insert into a table:

INSERT INTO design_designs(key, value, nonceId)
VALUES ('test key', 'test value', 'test nonce');

The error I get is:

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

Any idea what I did wrong? According to the query documentation, my query is correct. I'm obviously missing something.

P粉302484366
P粉302484366

reply all(1)
P粉955063662

key is a reserved word and must be separated:

INSERT INTO design_designs(`key`, value, nonceId) VALUES...
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!