is there a way to sort by a field, but have specified fields always appear first?
e.g.:
ID | DATA
1 | ...
2 | ...
3 | ...
4 | ...
8 | ...
10 | ...
I want to retrieve all records ordered by ID ascending, but I want records 8 and 10 to always be first, so the retrieval looks like:
ID | DATA
8 | ...
10 | ...
1 | ...
2 | ...
3 | ...
4 | ...
I know it sounds kind of dumb, but it's kind of the way it is for now. any way to do this without having to use multiple queries?