MySQL_012_SQl中的数学用法

表名mytable,如下图

MySQL_012_SQl中的数学用法_第1张图片

round四舍五入的用法,输入:select id,username,password,round(num) from mytable;   如下图

MySQL_012_SQl中的数学用法_第2张图片

ceiling向上入的用法,输入:select id,username,password,ceiling(num) from mytable;   如下图

MySQL_012_SQl中的数学用法_第3张图片

floor向下舍的用法,输入; select id,username,password,floor(num) from mytable;   如下图

MySQL_012_SQl中的数学用法_第4张图片


加法运算:select x+y;

减法运算:select x-y;

乘法运算:select x*y;

除法运算:select x/y;  保留小数四位     select x div y; 不会保留小数,不会对小数位进行四舍五入 

取余运算:select x%y;    select x mod y;     没有不同

四舍五入:select round(number) from tablename;

向上入   :select ceiling(number) from tablename;

向下舍   :select floor(number) from tablename;



你可能感兴趣的:(MySQL学习)