我正在一个Sybase database.Before中工作,我试图使用SQL对其进行回圈,但是存在一些数据不匹配的问题,我需要构建一个java函数,它返回数据库输出的Round值。With Round :- select Country,Round(ISNULL(sum(value),0),1) as Round_Value from Database ## Result :- 15012.8
Without Round :- select Country,sum(value) as Without_Round from Database ## Result :- 150