目录
日期函数
-- 获得年月日
select current_date();
-- 获得时分秒
select current_time();
-- 获得时间戳
select current_timestamp();
- 在日期的基础上加日期:
select date_add('2017-10-28', interval 10 day);
- 在日期的基础上减去时间:
select date_sub('2017-10-1', interval 2 day);
- 计算两个日期之间相差多少天:
select datediff('2017-10-10','2016-10-10');
select datediff('2015-10-10','2016-10-10');
-- 注意,是左边的时间减去右边的时间
- 查看当前日期时间:
select now();
案例1:
- 创建一张表,记录生日:
create table tmp(
id int primary key auto_increment,
birthday date
);
- 添加当前日期:
insert into tmp(birthday) values(current_date());
案例2:
- 创建一个留言表
create table msg (
id int primary key auto_increment,
content varchar(30) not null,
sendtime datetime
);
- 插入数据:
insert into msg(content,sendtime) values('hello1', now());
insert into msg(content,sendtime) values('hello2', now());
- 显示所有留言信息,发布日期只显示日期,不用显示时间
select content,date(sendtime) from msg;
- 请查询在2分钟内发布的帖子
select * from msg where date_add(sendtime, interval 2 minute) > now();
select * from msg where date_sub(now(), interval 2 minute) < sendtime;
字符串函数
案例:
- 获取tmp表的birthday列的字符集
select charset(birthday) from tmp;
- 要求显示tmp表中的信息,显示格式:“我的id是XX,我的生日是XX”
select concat('我的id是',id,',','我的生日是',birthday) as 信息 from tmp;
- 求tmp表中生日占用的字节数
select length(birthday),id from tmp;
注意:length函数返回字符串长度,以字节为单位。如果是多字节字符则计算多个字节数;如果是单字节字符则算作一个字节。比如:字母,数字算作一个字节,中文表示多个字节数(与字符集编码有关)
- 将msg表content列中有'h'的替换成'哈哈'
select replace(content,'h','哈哈') from msg;
- 截取tmp表中birthday字段的第二个到第三个字符
select substring(birthday, 2, 2), id from tmp;
- 以首字母小写的方式显示msg表中content列所有值
select concat(lcase(substring(content,1,1)),substring(content,2)) from msg;
数学函数
- 绝对值
select abs(-100.2);
- 向上取整
select ceiling(23.04);
- 向下取整
select floor(23.7);
- 保留2位小数位数(小数四舍五入)
select floor(23.7);
- 产生随机数
select rand();
- 取模
select mod(10,3);
其他函数
- user() 查询当前用户
select user();
- md5(str)对一个字符串进行md5摘要,摘要后得到一个32位字符串
select md5('admin');
- database()显示当前正在使用的数据库
select database();
- ifnull(val1, val2) 如果val1为null,返回val2,否则返回val1的值
select ifnull('abc', '123');
select ifnull(null, '123');