I have a list of people, all with types:
Qual <-Lowest
Pre A
Pre B
Pre C <-Highest
"Pre *" is the highest, Qual is the lowest ranking. I'd like a SQL statement to to Order By: Reverse alphabetical order if it starts with a P, then alphabetical order for the rest. Something like this:
ORDER BY table.field1 Like "P*" DESC, table.field1 ASC
Qual <-Lowest
Pre A
Pre B
Pre C <-Highest
"Pre *" is the highest, Qual is the lowest ranking. I'd like a SQL statement to to Order By: Reverse alphabetical order if it starts with a P, then alphabetical order for the rest. Something like this:
ORDER BY table.field1 Like "P*" DESC, table.field1 ASC