美文网首页
MySQL语法(数学函数)

MySQL语法(数学函数)

作者: SHARE李 | 来源:发表于2020-05-06 17:37 被阅读0次
    数学函数

    1)abs( ) :取绝对值
    select abs(1.0),abs(-5.3) from dual;

    image.png
    2)round():四舍五入
    select round(1.4999),round(1.5),round(-1.4568,2),round(-53451.4568,-2) from dual; image.png
    3) truncate():截断
    select truncate(1.4999,2),truncate(1.5,1), truncate(-1.4568,2),truncate(-53451.4568,-2) from dual; image.png
    4)ceil( ) :向上(后)取整
    select ceil(1.0001),ceil(1.9), ceil(-221.9),ceil(-1.001) from dual; image.png
    5) floor() :向下(前)取整
    select floor(1.0001), floor(1.9), floor(-221.9), floor(-1.001) from dual; image.png
    6)rand( ):随机数 image.png
    7)pi( ) :圆周率 image.png
    8)mod( ):求余数 image.png
    9)sqrt( ):算术平方根
    select mod(8,3),sqrt(-4),sqrt(5) from dual; image.png
    10)sin( ) :正弦函数
    cos( ) :余弦函数
    tan( ) :正切函数
    select sin(pi()/2),cos(pi()),tan(pi()/4); image.png

    相关文章

      网友评论

          本文标题:MySQL语法(数学函数)

          本文链接:https://www.haomeiwen.com/subject/lybqcctx.html