Forum Moderators: coopster
ORDER BY Avail , Loc DESC 'Avail' is a column that contains only a 0 or a 1. I want the 1's at top.
'Loc' is a column that contains only a, b, c, or d. I want those in order a-d.
The script is successfully sorting a-d within all rows where column avail is 0, and again in all rows where avail is 1. Everything looks EXACTLY as I want it to...but....
The rows in which avail is 1 should be on top. No matter what I do, they always get slammed to the bottom.
Any tips?
EDIT: I have also tried:
ORDER BY Avail , Loc ASC