sql數學函式

2021-04-25 06:55:27 字數 542 閱讀 7719

1.abs(numeric_expr)

求絕對值

2.ceiling(numeric_expr)

取大於等於指定值的最小整數

floor(numeric_expr)

小於等於指定值得最大整數

3.exp(float_expr)

取指數power(numeric_expr,power)

返回power

次方square(float_expr)

返回float_expr

的平方sqrt(float_expr)

平方根4. pi() 3.1415926.........

5.rand([int_expr])

隨機數產生器

6.round(numeric_expr,int_expr)

按規定的精度四捨五入,

int_expr

表示保留幾位小數

7.sign(int_expr)

根據正數

,0,負數

,,返回

+1,0,-1

SQL 標量函式 數學函式

sql 標量函式 數學函式 函式引數功能 asin acos atan float expr 求float expr的反正弦 反余弦 反正切 atn2 float expr1,float expr2 求float expr1 float expr2的反正切 sin cos tan cot float...

SQL系列函式 數學函式

1.abs函式取數值表示式的絕對值 select abs 40 結果是40 2.ceiling函式取大於等於指定表示式的最小整數 select ceiling 40.5 結果是41 3.floor函式取小於等於指定表示式的最大整數 select floor 40.5 結果是40 4.power函式取...

SQL2008數學函式

函式名稱 引數 示例 說明 abs 數值表示式 select abs 23.4 返回 23.4 返回指定數值表示式的絕對值 正值 pi無引數 select pi 返回 3.14159265358979 返回 的值 cos 浮點表示式 select cos pi 3 返回 0.5 返回指定弧度的余弦值...