我有以下要求-
1. Get the A_MINUTES column value from TableA for all rows
2. Sum the A_MINUTES.
3. Convert the summed minutes values to hours - divide by 60
4. Round off the final hours value to 2 decimal places.
这需要用 SQL 编写。
你认为这个查询会有任何舍入错误吗?
SELECT ROUND ( (SUM(A_MINUTES)/60.0) , 2) FROM TABLEA