The records are not really stored in any order, per se.

Basically, you could use a decode statement to kind of do what you want:
Code:
select country_name
from countries
order by decode(country_name,'USA',2,1)