I have a table in which I have three fields with data type date, int and bigint.
I want to sort my select query using all these three columns. I want to sort them all in descending order. For example:
Select * From mytbl
order by date desc,intnum desc, bigintnum desc;
Is it possible that i could get a result starting from max of all three columns. like latest date, highest intnum and higest bigintnum.