I have an “order” column where I store articles and then display them in a specific order. I use enum type '0', '1', '2', '3' with 0 by default. I need a query to order the result as follows: 1, 2, 3, 0, 0, 0, 0, and so on with zeros. Is it possible?
source
share