featur

[mssql] round, ceiling 차이점 본문

개발/MSSQL

[mssql] round, ceiling 차이점

featur 2015. 11. 4. 14:24

 

[MSSQL] round, ceiling 차이점

 

 

Declare @strNumber Float

Set @strNumber = 74

Select @strNumber/30
--2.46666666666667

 

반올림 함수 : 소숫점 몇번째에서반올림 지정


Select Round(@strNumber/30,0)
--2
Select Round(@strNumber/30,1)
--2.5

 

올림함수
Select Ceiling(@strNumber/30)
--3

 

간단하게 말해서

Ceiling(3.2) -> 4

Ceiling(3.8) -> 4

Round(3.2) -> 3

Round(3.8) -> 4

 

셀링은 다음으로 큰 정수값을 리턴하고 라운드는 반올림이다.

 


Comments