Hi.
My table has a 'number' column which ranges from 0 to around 1000. I want to select everything from the table while ordering it by number. However, I want the rows with number=0 to appear last. I could do it in two queries:
select * from channel_table where number > 0 order by number;
select * from channel_table where number = 0;
But I'm guessing there is a one-line solution?