I want to sort on strProjectName and strJobName, but I want to prioritize strProjectName. Using the regular order by method: ORDER BY strProjectName, strJobName ASC does work, but not when sorting DESC, due to the fact it will sort on strJobName instead.
TL;DR: I want to sort first on strProjectName and then on strJobName. (And yes, there are more fields).