常见的数值函数:
代码:
select ceil(1.5);/*向上取整 */select floor(1.5);/*向下取整 */
select mod(5,2);/*取模:余数 */
select rand();/*求0~1之间的随机数 */
select round(2.34,1);/*四舍五入 */
-- 案例:通过数据库的函数,生成一个六位数的随机验证码
select lpad(round(rand()*1000000,0),6,'0'); 标签:1.5,函数,rand,数值,取整,round,select From: https://www.cnblogs.com/123456dh/p/17293159.html