▣ 숫자형 함수

select round(123.456,1), round(123.456,-1)
-- 123.500 120.000
-- 소수점이하 1자리 / 소수점 이전 1자리

select sqrt(9), square(9)
-- 3.0 81.0
-- 제곱 / 제곱근

select power(2,3)
-- 8
-- n승

select abs(100), abs(-100)
-- 100 100
-- 절대값

select ceiling(123.456), ceiling(-123.456)
-- 124 -123
-- 큰 정수값(반올림)

select floor(123.456), floor(-123.456)
-- 123 -124
-- 작은 정수값(내림)



AND