Will it be possible to order by multiple rows?
I need my users to be sorted by last_activity, yet at the same time, I need the users with pictures to appear before the ones without
Something like this:
SELECT some_cols
FROM `prefix_users`
WHERE (some conditions)
ORDER BY last_activity, pic_set DESC;