I want to order the results of a mysql query
1) to show first entrys wich match a given condition and order them randomly
2) and then show the rest of the results ordered by date desc
i tryed already this:
Select * from post inner join user on post.user_id = user.id order by user.type = "top" desc, created desc;
many thanks