Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My query:

UDPATE message_recipients SET
recipient_status = 2 WHERE mid = 3 AND
recipient_id = 4

Table fields:

id, mid, recipient_status, recipient_id

Error:

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 'UDPATE message_recipients SET recipient_status = 2 WHERE mid = 3 AND recipient_i' at line 1

Could someone give me any advice?

share|improve this question
2  
+1 Upvote for making me feel less embarrassed that I do this same thing frequently. – Michael Berkowski Jun 3 '11 at 20:53
2  
Shall i retag the question with ILLUSION – zod Jun 3 '11 at 20:54
3  
99% of the time for "...for the right syntax to use near 'quoted syntax'" the first word in the quoted syntax will be the one at fault. I learned a long time ago to look very thoroughly at that first word before the rest. – Joel B Fant Jun 3 '11 at 20:57

1 Answer

up vote 10 down vote accepted

You need UPDATE instead of UDPATE. I do this myself at least three times a week :)

share|improve this answer
@michael druaplity is really blind :-) – zod Jun 3 '11 at 20:51
@zod I don't think he's blind. I make this error constantly when typing on the console. Not so much in my text editor (vim) because I'm always calling the auto-complete after the first 1 or 2 characters and I notice problems in syntax highlighting. – Michael Berkowski Jun 3 '11 at 20:52
+1 I even glossed over it on the first read. Reminds me of this. – Joe Stefanelli Jun 3 '11 at 20:54
@Joe Stefanelli I've seen that before -- on a poster inside a Jimmy John's sandwich shop. – Michael Berkowski Jun 3 '11 at 20:55
Mmmm... Jmimy Jhon's... – Dan J Jun 3 '11 at 21:08
show 1 more comment

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.