0

次の要件があります-

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
4

1 に答える 1