第五章MYSQL 函数-数学函数,控制函数
Posted C小杰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第五章MYSQL 函数-数学函数,控制函数相关的知识,希望对你有一定的参考价值。
(一) 数学函数
概念:数学函数是用来处理数值数据的运算,mysql 中主要的数学函数有绝对值函数、三角函数、对数函数和随机函数等。
注意:使用数学函数时,如有错误发生,该函数将返回 null
示例:
--使用 ceil(x) 和 ceiling(x) 返回不小于 x 的最小整数。
select ceil(2), ceil(2.75), ceil(-2), ceil(-2.75)
--使用 floor(x) 返回不大于 x 的最大整数。
select floor(2), floor(2.75), floor(-2), floor(-2.75)
--使用 rand() 产生 0~1 的浮点数。
select rand(),rand(),rand()
--用 rand(x) 产生 0~1 的浮点数。
select rand(5),rand(5),rand(11)
--使用 round(x) 返回最接近于参数 x 的整数。
select round(-2.5), round(-2.25), round(-2.75), round(2.25), round(2.75)
--使用 round(x,y) 对参数 x 进行四舍五入的操作,返回值保留小数点后面指定的 y 位。
select round(-2.55,1),round(-2.25,3),round(375.49,-1),round(375.49,-1)
--使用 truncate(x,y) 对参数 x 进行截取操作。
select truncate(2.25,1),truncate(2.99,1),truncate(2.99,0),truncate(99.99,-1)
(二)控制函数
--使用 IF() 和 IFNULL() 控制流函数显示所有线路的线路号、所属公司和线路类型(“长途”和“短途”)。
select lineNo 线路 , ifnull(company,' 待分配 ') 所属公司 ,if(miles>=22,' 长途 ',' 短途 ') 线路类型
from line
以上是关于第五章MYSQL 函数-数学函数,控制函数的主要内容,如果未能解决你的问题,请参考以下文章