elhama Posted August 13, 2006 Share Posted August 13, 2006 What I want to do is to SELECT * from members, but I want to order it by 'type' (order by type DESC), but I want it to also to order by category in the second hand, kinda hard to explain, do anyone understand what I'm trying to do? Thanks! Link to comment https://forums.phpfreaks.com/topic/17381-help-with-sql-queryselect/ Share on other sites More sharing options...
Chetan Posted August 13, 2006 Share Posted August 13, 2006 I hav dun this wid oracle lets try here[code]SELECT * FROM members ORDER BY type,category DESC;[/code] Link to comment https://forums.phpfreaks.com/topic/17381-help-with-sql-queryselect/#findComment-73935 Share on other sites More sharing options...
elhama Posted August 13, 2006 Author Share Posted August 13, 2006 Ah damn it! I didn't realize it was that simple! :D Haaha! Thanks alot mate!! ;) Link to comment https://forums.phpfreaks.com/topic/17381-help-with-sql-queryselect/#findComment-73936 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.