Code:
ORDER BY planType DESC
When I set up my DB tables a while back I setup a "planType" which could have the values:
Premium
Bold
Basic
Now I would like to sort my rows by planType, however I would just like to sort first by Premium and then every thing else (meaning Bold and Basic would sort the same).
When I sort by planType DESC it works for Premium being sorted the first because of the P is after the B's. But how do I get Bold and Basic to sort the same?