eightFX Posted May 21, 2007 Share Posted May 21, 2007 Is it possible to query a query using PHP and MySQL? Better yet is there a way to get this to work the way I want: $query = mysql_query("SELECT * FROM tester ORDER BY date DESC, name LIMIT 10 "); while($result = mysql_fetch_array($query)) { echo '' . $result['name'] . ' - ' . $result['date'] . ''; } I want to pull the ten most recently added people (tracked with date) but sort them alphabetically for the output... Thanks for any insight, major brain cramp on this one... Quote Link to comment https://forums.phpfreaks.com/topic/52369-solved-query-a-query/ Share on other sites More sharing options...
Barand Posted May 21, 2007 Share Posted May 21, 2007 SELECT * FROM (SELECT * FROM tester ORDER BY date DESC LIMIT 10) as a ORDER BY name Quote Link to comment https://forums.phpfreaks.com/topic/52369-solved-query-a-query/#findComment-258422 Share on other sites More sharing options...
eightFX Posted May 21, 2007 Author Share Posted May 21, 2007 That does not seem to work in my code, this is what I used: $query = mysql_query("SELECT * FROM (SELECT * FROM tester ORDER BY date DESC LIMIT 10) ORDER BY name"); while($result = mysql_fetch_array($query)) { echo ' ' . $result['name'] . ' - ' . $result['date'] . ' '; } The error I receive is: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in test.php on line 17 Line 17 is: while($result = mysql_fetch_array($query)) { Quote Link to comment https://forums.phpfreaks.com/topic/52369-solved-query-a-query/#findComment-258428 Share on other sites More sharing options...
Barand Posted May 21, 2007 Share Posted May 21, 2007 You left out the alias for the subquery Quote Link to comment https://forums.phpfreaks.com/topic/52369-solved-query-a-query/#findComment-258432 Share on other sites More sharing options...
eightFX Posted May 21, 2007 Author Share Posted May 21, 2007 Good call! Thanks, it has been that kind of day! Got to love Mondays! Quote Link to comment https://forums.phpfreaks.com/topic/52369-solved-query-a-query/#findComment-258475 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.