日期格式:
DATE_FORMAT( 日期字段, '%Y-%m-%d' ) '日期'
当前日期:
CURDATE()
求月
month(date)=8
字段日期增加一天:
DATE_ADD(字段日期,INTERVAL 1 DAY)
字段日期减少一天:
DATE_SUB(字段日期, INTERVAL 1 DAY)
日期差距:
datediff(date2, date1)=1
时间差距:
TIMESTAMPDIFF(MINUTE, start_time, submit_time) < 5
日期强转:
[[and cast(sja.interview_time as DATE)>={{starttime}}]]
[[and cast(sja.interview_time as DATE)<={{endtime}}]]
select * from t_income where create_time between cast('2019-01-01' as DATE) and cast('2019-09-01' as DATE);
替换函数:
REPLACE(s,s1,s2) 使用字符串 s2 替换字符串 s 中所有的字符串 s1
字符串截取:
LOCATE('attendanceTime',字符串所在字段) 会返回‘a’在‘字符串所在字段’里的下标
substring(字符串所在字段,LOCATE('attendanceTime',字符串所在字段)+17,8) 返回'attendanceTime'之后的8个字符
字符串合并:
concat(1,2,3) 返回‘123’
GROUP_CONCAT( sscr.clock_time SEPARATOR ',' ) 每一条数据里的'clock_time'字段都用逗号合并成一个字符串。
字符串长度:
LENGTH函数,获取字符串长度
数字四舍五入保留小数:
round(num,几位小数)
条件判断:
一,if(author='Felix', 'yes', 'no') 如果第一个条件为True,则返回第二个参数,否则返回第三个
二,select case
when author='Felix'then 'good'
when author='Tom' then 'top'
when author='Bob' then 'down'
else 'do not know'
end as AU from felix_test;
三,select ifnull(author,'yes') from felix_test;
ifnull 判断是否为空:假如第一个参数为null,则返回第二个参数;否则直接返回第一个参数的值
注:mysql里面的if和case when语句也是可以嵌套的。
find_in_set()函数的使用及in()用法详解:
FIND_IN_SET(str,strlist)
select
FIND_IN_SET(
'2'
,
'1,2'
); 返回2
select
FIND_IN_SET(
'6'
,
'1'
); 返回0 strlist中不存在str,所以返回0。
SELECT * from a where FIND_IN_SET(EKGRP,'C54,C02,C14,C60,C06,C61,C53,C51,C12,C08,C03,C07')>0
SELECT * from a where EKGRP in ('C54','C02','C14','C60','C06','C61','C53','C51','C12','C08','C03','C07')
数据行转列:
-- (selectMAX( CASE WHEN sscr1.clock_type = 1 THEN sscr1.clock_photo ELSE '' END ) AS '上班照',
MAX( CASE WHEN sscr1.clock_type = 2 THEN sscr1.clock_photo ELSE '' END ) AS '午餐照',
MAX( CASE WHEN sscr1.clock_type = 3 THEN sscr1.clock_photo ELSE '' END ) AS '下班照',
-- FROM saas_site_clock_record sscr1 WHERE sscr1.clock_apply_id=ssca.id and sscr1.status=1 )
inner join和left join区别为:返回不同、数量不同、记录属性不同。
一、返回不同
1、inner join:inner join只返回两个表中联结字段相等的行。
2、left join:left join返回包括左表中的所有记录和右表中联结字段相等的记录。
二、数量不同
1、inner join:inner join的数量小于等于左表和右表中的记录数量。
2、left join:left join的数量以左表中的记录数量相同。
三、记录属性不同
1、inner join:inner join不足的记录属性会被直接舍弃。
2、left join:left join不足的记录属性用NULL填充.。
UNION(合并)
1、可以实现将多个查询结果集合并为一个结果集。
不去重:union all
去重:union
distinct:
1.作用于单列
2.作用于多列
3.COUNT统计
4.distinct必须放在开头
count(distinct 'exam_id' and 'score' is not null)
开窗函数:相当于一列
row_number/rank/dense_rank over (partition by FIELD1 order by FIELD2)
row_number() over (partition by userId order by date) 根据用户id分区,再根据date排序,得到序号。
lead(date,1) over (partition by userId order by date) 根据date做向下一位偏移,根据用户id分区,再根据date排序。
lag(date,1) over (partition by userId order by date) 根据date做向上一位的偏移,根据用户id分区,再根据date排序。
牛客网
count(distinct uid, date_format(submit_time, '%Y%m%d'),麻烦问一下,这行代码是什么意思
对uid和日期的不同计数,相当于“与”,distinct 可以作用于多列
每个学校里gpa最低的同学sql32
select device_id,university,gpa from user_profile where (university,gpa) in
(select university,min(gpa) gpa from user_profile group by university)
order by university
统计复旦用户8月练题情况sql34
select
a.device_id,a.university,
count(b.question_id),
sum(if(b.result='right', 1, 0))
from user_profile a left join question_practice_detail b on a.device_id=b.device_id and month(b.date)=8
where a.university='复旦大学'
group by a.device_id
看sql的运行时间
show variables like 'profiling';
set profiling =1;
show profiles;
索引
explain select ---