Minklet Posted November 5, 2010 Share Posted November 5, 2010 I have a join of 3 tables, I need to count the results for pagination. It works perfectly if I type it into phpmyadmin, but tells me I have an error in my syntax when I put the exact same query into PHP. SELECT COUNT (*) FROM our_audio AS e JOIN wp_site_posts AS p ON e.post_id = p.post_id AND e.site_id = p.blog_id JOIN wp_blogs AS b ON e.site_id = b.blog_id 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 '*) FROM our_audio AS e JOIN wp_site_posts AS p ON e.post_id = p.post_id AND e.si' at line 1 in /var/www/vhosts/subverb.net/subdomains/dev/httpdocs/podcast.php on line 64 Obviously it's hard to debug because I can't see why it would work if it was wrong? Quote Link to comment https://forums.phpfreaks.com/topic/217869-sql-query-works-php-doesnt-like-it/ Share on other sites More sharing options...
Minklet Posted November 5, 2010 Author Share Posted November 5, 2010 There was a space between the opening paranthesis after COUNT. Doh! Quote Link to comment https://forums.phpfreaks.com/topic/217869-sql-query-works-php-doesnt-like-it/#findComment-1130786 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.