Minutes must be converted to hours and rounded to two decimal places. Additionally, I only need to show up to two integers following the decimal point. Therefore, if I have 650 minutes, hours should be 10.83.
Here is what I currently have:
Select round(Minutes/60.0,2) from ....
But in this instance, hours equal 10.5000000 if my minutes are, say, 630. But I simply want it for 10.50. (after rounding). How can I accomplish this?