Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't know what's wrong with my syntax, but I'm missing something:

$createrequest = mysql_query("INSERT INTO products_updates_queue (id, kid,
product_version_id, key, ip) VALUES ('$request_id', '$uid', '$version_id',
'$request_key', '$request_ip')");

I receive this error:

"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 'key, ip) VALUES ('j4ctveyd0x62', '1', 'z451ah3', 'hqbyu7bhg8za', '64.134.163.2' at line 2"

Can anyone see what I am missing?

share|improve this question

2 Answers

up vote 3 down vote accepted

key is a reserved word in MySQL. Avoid it, or wrap it in backticks.

Edit: And I hope you escaped the variables you're putting into that query.

share|improve this answer
Thanks! This solved it! Saw your answer first! – nitsuj Mar 6 '12 at 20:35

I think key is a reserved word, and you should avoid using it as a column name. Try using backticks around it:

$createrequest = mysql_query("INSERT INTO products_updates_queue (id, uid, product_version_id, `key`, ip) VALUES ('$request_id', '$uid', '$version_id', '$request_key', '$request_ip')");
share|improve this answer
+1 for suggesting avoiding using it as a column name (Better solution then always having to wrap it in backticks) – John Mar 6 '12 at 20:33
Thanks for your reply! I saw the solution from @DCoder before yours, but I will accept yours so that others (if they have the same problem), will know to avoid using this column name. – nitsuj Mar 6 '12 at 20:36
The other user also tells you to avoid it. Feel free to accept the answer you like the most! – bfavaretto Mar 6 '12 at 20:38
You're right. Thanks! – nitsuj Mar 6 '12 at 20:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.