I have a table with two columns of data (Data Type varchar and bit). I want to row sort the data by column two descending and then by column one ascending.
My SQL query thus far is:
SELECT *
FROM MyTable
ORDER BY column_two DESC, column_one
but the data is not sorted in column one.
I really need some help with this one.
Cheers.
My SQL query thus far is:
SELECT *
FROM MyTable
ORDER BY column_two DESC, column_one
but the data is not sorted in column one.
I really need some help with this one.
Cheers.
