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

I'm going blind here... can't seem to find the error in this SQL:

INSERT INTO sankt_groups_order (
    parent_group_id, 
    child_group_id, 
    order
) VALUES (?,?,?)
ON DUPLICATE KEY UPDATE 
    order = ?
;

I am getting this error:

SQLSTATE[42000]: Syntax error or access violation: 
    1064 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 'order ) VALUES ('65',NULL,'3') ON DUPLICATE KEY UPDATE order = '3'' 

Next will this SQL do what I think? I need it to insert the whole row if missing and update order if it exists... I have an index making parent_group_id and child_group_id unique.

share|improve this question

1 Answer

up vote 3 down vote accepted

order is a reserved word in mysql, you'll have to escape it:

    child_group_id, 
    `order`
    ^--   ^--- backticks to escape
) VALUES (?,?,?)

and yes, it should do what you think. If there's a unique/primary key violation, you'll only change the order field.

share|improve this answer
Yes. Thank you that seemed to do the trick :) Forgot about those damn reserved words... I would have wished for a better error message though :) – Ronnie Jespersen Nov 29 '12 at 20:40
unfortunately, that's why they're reserved. mysql only sees what you wrote, and sees "order", thinking "hmm, looks like the coder's jumped from field lists to an order clause without a from/where" – Marc B Nov 29 '12 at 20:50
Ah of course. Makes sence Marc. Thank you! – Ronnie Jespersen Nov 30 '12 at 23:51

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.