i need to implement a semi-random sort of list,
I need to be able to fix x items as the first ones, and the rest to be ordered by random
question,
will something like
"..ORDER BY fixed DESC, rand"
where fixed is a boolean?
if not, how would you suggest?
As per Jon’s comment,
Will work, however, this will force a sort on a random order for the full table.
The following will be much faster.
Because this will only sort 200 items and not the full table.