As others have said,listing the different columns in order of priority. You can also go one step further and build logic into your ORDER BY so that it becomes conditional e.g.
order by case when col_location = col_something_else then
col_location
else
col_time
end