【JavaWeb后端学习笔记】MySQL的常用函数(字符串函数,数值函数,日期函数,流程函数)

MySQL函数

1、字符串函数

函数 说明
concat(s1, s2, ..., sn) 字符串拼接,将 s1, s2, ..., sn 拼接成一个字符串
lower(str) 将字符串 str 全部转为小写
upper(str) 将字符串 str 全部转为大写
lpad(str, n, pad) 左填充,用字符串 pad 对 str 的左边进行填充,达到 n 个字符串长度
rpad(str, n, pad) 右填充,用字符串 pad 对 str 的右边进行填充,达到 n 个字符串长度
trim(str) 去掉字符串头部和尾部的空格
substring(str, start, len) 返回从字符串 str 从 start 位置起的 len 个长度的字符串,索引从 1 开始
sql 复制代码
-- concat
select concat('hello', 'MySQL');

-- lower
select lower('Hello');

-- upper
select upper('Hello');

-- lpad
select lpad('hhh', 5, '-');

-- rpad
select rpad('hhh', 5, '-');

-- trim
select trim('  Hello MySQL!  ');

-- substring
select substring('Hello MySQL', 1, 5);

2、数值函数

函数 说明
ceil(x) 向上取整
floor(x) 向下取整
mod(x, y) 返回 x/y 的模
rand() 返回 0~1 内的随机数
round(x, y) 求参数 x 的四舍五入的值,保留 y 为小数
sql 复制代码
-- ceil
select ceil(1.1);

-- floor
select floor(1.1);

-- mod
select mod(7, 4);

-- rand
select rand();

-- round
select round(1.254, 1);

3、日期函数

函数 说明
curdate() 返回当前日期(年-月-日)
curtime() 返回当前时间(时-分-秒)
now() 返回当前日期和时间
YEAR(date) 获取指定 date 的年份
MONTH(date) 获取指定 date 的月份
DAY(date) 获取指定 date 的日期
DATE_ADD(date, INTERVAL expr type) 返回一个日期/时间值加上一个时间间隔 expr 后的时间值
datediff(date1, date2) 返回起始时间 date1 和结束时间 date2 之间的天数
sql 复制代码
-- curdate
select curdate();

-- curtime
select curtime();

-- now
select now();

-- YEAR
select YEAR(now());

-- MONTH
select MONTH(now());

-- DAY
select DAY(now());

-- DATE_ADD
select DATE_ADD(now(), INTERVAL 10 DAY);

-- datediff
select datediff('2021-10-01', '2021-06-01');

4、流程函数

函数 说明
if(value, t, f) 如果 value 为 true, 则返回 t, 否则返回 f
ifnull(value1, value2) 如果 value1 不为空, 返回 value1, 否则返回value2
case when [val1] then [res1] when [val2] then [res2] ... else [default] end 如果 val1 为 true, 返回 res1,...,否则返回 default 默认值
case [expr] when [val1] then [res1] when [val2] then [res2] ... else [default] end 如果 expr 的值等于 val1,返回 res1,...,否则返回 default 默认值
sql 复制代码
-- if(value, t, f)
select if(true, 'True', 'False');
select if(false, 'True', 'False');

-- ifnull(value1, value2)
select ifnull('OK', 'Default');
select ifnull('', 'Default');
select ifnull(null, 'Default');

-- case when [val1] then [res1] when [val2] then [res2] ... else [default] end
select 
	id, 
	name,
	(case when math >= 85 then '优秀' when math >= 60 then '及格' else '不及格' end) as math,
	(case when english >= 85 then '优秀' when english >= 60 then '及格' else '不及格' end) as english,
	(case when chinese >= 85 then '优秀' when chinese >= 60 then '及格' else '不及格' end) as chinese
from 
	score;

-- case [expr] when [val1] then [res1] when [val2] then [res2] ... else [default] end
select
	id,
	name,
	(case address when '北京' then '一线城市' when '上海' then '一线城市' else '二线城市' end) as address
from 
	tb_emp;
相关推荐
·薯条大王4 小时前
MySQL联合查询
数据库·mysql
zhuyixiangyyds7 小时前
day21和day22学习Pandas库
笔记·学习·pandas
每次的天空7 小时前
Android学习总结之算法篇四(字符串)
android·学习·算法
jingjingjing11118 小时前
笔记:docker安装(ubuntu 20.04)
笔记·docker·容器
背影疾风8 小时前
C++学习之路:指针基础
c++·学习
DreamBoy@8 小时前
【408--考研复习笔记】操作系统----知识点速览
笔记
UpUpUp……9 小时前
特殊类的设计/单例模式
开发语言·c++·笔记·单例模式
苏克贝塔9 小时前
CMake学习--Window下VSCode 中 CMake C++ 代码调试操作方法
c++·vscode·学习
odoo中国10 小时前
深度学习 Deep Learning 第15章 表示学习
人工智能·深度学习·学习·表示学习
电星托马斯10 小时前
C++中顺序容器vector、list和deque的使用方法
linux·c语言·c++·windows·笔记·学习·程序人生