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

I am fighting with a syntax error and I can't really find the problem.

this is my query

 $res2 = mysql_query("SELECT * FROM wp_postmeta PM1
                      WHERE PM1.meta_key = '_pronamic_google_maps_latitude'
                      AND PM1.post_id = '$id'
                      JOIN wp_postmenta PM2 
                      WHERE PM2.post_id = PM1.post_id 
                      AND PM2.meta_key = '_pronamic_google_maps_longitude'")
         or die(mysql_error());

and getting 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 'JOIN wp_postmeta PM2' at line 3

could please someone can give me a hint what i'm missing?

share|improve this question
2  
The error message does not seem to be corresponding with the query you are showing – Pekka 웃 May 24 '11 at 6:54
I think you might have a problem with AND PM1.post_id = '$id' unless $id is the actual value in your table. Have you tried AND PM1.post_id = ". $id? – s.d May 24 '11 at 6:57

2 Answers

First have to come the join then the rest of the query. So something like

 $res2 = mysql_query("SELECT * FROM wp_postmeta PM1
                                  JOIN wp_postmenta PM2 on PM1.post_id = PM2.post_id
                                  WHERE PM1.meta_key = '_pronamic_google_maps_latitude'
                                  AND PM1.post_id = '$id'
                                  AND PM2.meta_key = '_pronamic_google_maps_longitude' 
                                   ") or die(mysql_error()) ;
share|improve this answer
thank you for your help :) – Side May 24 '11 at 6:59

You've two where clauses and the join order is wrong:

select ...
from ...
join ... on ...
where ... and ...
share|improve this answer

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.