dtgreenwood Posted August 5, 2006 Share Posted August 5, 2006 Hello everyone.After heading over to mysqlfreaks for help and finding the forums shut down :( I've been redirected over here.I'm having a problem with MySQL versions. I run MySQL 5.0.21-community-nt on my localhost for development and my web sites server runs MySQL 3.23.58. Until now this hasn't been a problem. Having used the following SQL statement on my localhost and having it return correct results.[code]SELECT distinct a.articleid, a.articleauthorid, a.articletitle, a.articlecontent, a.articledate, a.articleenclosuretitle, a.articleenclosureuri, a.articleenclosurelength, u.userid, u.username, u.userstatus, (SELECT COUNT(*) FROM comments WHERE comments.articleid = a.articleid)AS articlecomments FROM comments c, articles a, users u WHERE a.articleauthorid = u.userid ORDER BY articledate DESC LIMIT 0,3[/code] I updated my website to use the new SQL with no luck. My web site's MySQL server gives me the following error: [code]#1064 - You have an error in your SQL syntax near 'SELECT COUNT(*) FROM comments WHERE comments.articleid = a.articleid) AS articlec' at line 1[/code]My question is how would I replicate the same results of the above statement for my web sites server?If anymore information is required just let me know. Thanks in advance.dtgreenwood. Link to comment https://forums.phpfreaks.com/topic/16647-mysql-version-problems/ Share on other sites More sharing options...
fenway Posted August 5, 2006 Share Posted August 5, 2006 You can't use subqueries in 3.23 -- you'll need to rewrite as a JOIN. Link to comment https://forums.phpfreaks.com/topic/16647-mysql-version-problems/#findComment-69915 Share on other sites More sharing options...
dtgreenwood Posted August 5, 2006 Author Share Posted August 5, 2006 I'd feared as much. Any ideas on how to do this? I've been trying with lots of variations, none of which give the desired result. Link to comment https://forums.phpfreaks.com/topic/16647-mysql-version-problems/#findComment-69962 Share on other sites More sharing options...
fenway Posted August 6, 2006 Share Posted August 6, 2006 I'll take a look later on tonight... I'm not at a location with access to my sql box. Link to comment https://forums.phpfreaks.com/topic/16647-mysql-version-problems/#findComment-70012 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.