I have color column in MySQL table which type is ENUM('RED', 'YELLOW', 'MY_COLOR', 'BLACK'), and another name column which type is VARCHAR(30).
I would like to get all table rows in the following order:
YELLOWrows first, sorted bynameREDrows last, sorted byname- In the middle, all other rows, sorted by
name
Is that possible to make this kind of sort in 1 query ?