Computer Science, asked by Akhilsingh8692, 1 year ago

Using MySQL, can I sort a column but allow 0 to come last?

Answers

Answered by manshasingh43829
0

Explanation:

You can sort a column, with 0 come last with the help of ORDER BY. The syntax is as follows −select *from yourTableName order by ...

Similar questions