I have a table that needs to be separated first by `type`, then by `state`, then sorted by `name`
The problem I want `type` to be in a specific order. Right now, there are 3 types:
free, surcharge, and fee
I want them to show up in that order, but i can't do it Alphabetically ASC or DESC.
Inside those 3 groups, I want it to group all similar states together. (this can be alphabetical)
Last, I want each group to be alphabetical (ASC) by `name`.
How would I go about accomplishing this?
_______________
_brian.
The problem I want `type` to be in a specific order. Right now, there are 3 types:
free, surcharge, and fee
I want them to show up in that order, but i can't do it Alphabetically ASC or DESC.
Inside those 3 groups, I want it to group all similar states together. (this can be alphabetical)
Last, I want each group to be alphabetical (ASC) by `name`.
How would I go about accomplishing this?
_______________
_brian.