I have a table with all the ISO standard country names that I want to use to populate a form field, so heres the issue.
I want to display USA first in the list and everything else in desc alpha order after.
I have tried something like this;
SELECT * FROM myList ORDER BY ceil(abs(sin((listID - 225)/0.000001))), listID DESC
Any ideas?