函数分类:
字符串函数
数值函数
日期函数
流程函数
字符串函数:
concat(s1,s2,sn) 字符串拼接
lower(strr) upper(str) 全部转换为小写,大写
lpad(str,n,pad)左填充,用字符串pad从左进行填充,打到n个字符串长度
rpad(str,n,pad)右填充,用字符串pad从右进行填充,打到n个字符串长度trim(str) 去掉字符串头部和尾部空格
substring(str,strat,len) 返回从start开始的len长度字符串
CASE:
为了统一规范,企业员工的工号统一为5位数,不足前面补0。
update emp set workno=lpad(workno,5,'0');
数值函数:
ceil(x) 向上取整
floor(x) 向下取整
mod(x,y) 返回x /y的模
rand() 返回0~1随机值
round(x,y) 求参数x的四舍五入的值,保留y位小数
case:
生成一个六位的随机验证码:
select lpad(round(rand()*1e6,0),6,'0');
解析rand()*1e6 取到6为随机整数
再通过round 过滤掉小数
最后lpad 是为了避免 第一位取到0的时候位数不足,补全6位
日期函数:
curdate() 返回当前日期
curtime() 返回当前时间
now() 返回当前日期和时间year(date) 获取指定date年份
month(date) 获取指定date月份
day(date) 获取指定date日期date_add(date,interval expr type)放回上一个日期/时间值 加上一个时间间隔exp后的时间值
datediff(date1,date2) 返回起始时间相差天数
case:
查询所有员工的入职天数,并且根据入职天数倒序排序:
select name,datediff(now(),entrydate) as ddf from emp order by ddf desc;
流程函数:
if(value,t,f) 如果value 是true 则返回t,否则返回f
ifnull(value1,value2) if value1 不空放回value1,否则返回value2
case when [val1] then [res1]... else [default] end; if val1为真,返回res1,...,否则返回defult默认值
case [expr] when [val1] then [res1] ... else [default] end if expr等于val1,返回res1,...,否则返回defult默认值注: 空的字符串‘’不是null
case:
查询emp表中的员工姓名和工作地址(上海/北京-->一线城市,others--->二线城市)
select name as '姓名', (case when workaddr='北京'||workaddr='上海' then'一线城市'else'二线城市' end) as '地址' from emp;
统计班级各个成员成绩,展示规则如下:
>=80 优秀
>= 60及格
else 不及格
select
id,
name,
(case when math>=85 then '优秀' when math>=60 then'及格' else '不及格'end ) '数学',
(case when english>=85 then '优秀' when english>=60 then'及格' else '不及格'end ) '英语',
(case when chinese>=85 then '优秀' when chinese>=60 then'及格' else '不及格'end ) '语文'
from score;