How to order by column A and then by column B?

Viewed 96088

How to write SQL so that the result can be ordered first by column A then by column B. Something like below:

SELECT * FROM tbl WHERE predictor ORDER by col_A and ORDER by col_B
3 Answers
Related