Hello,
i have mysql table orders with field status = enum('inactive', 'active', 'expired', 'suspended');
I need to display results sorting by status.
The simpliest way would be to make 4 queries with selecting different status value. But maybe i could get the same result with only one mysql query?
Thank you.