当前位置:网站首页>MySQL functions
MySQL functions
2022-07-06 00:00:00 【lion tow】
Catalog
3、 ... and 、 Conditional judgment function
5、 ... and 、 Aggregate functions
One 、 Date function
1) NOW(): Get the current date and time
2) DAY(): Get the day in the date
3) MONTH(): Gets the month in the date
4) YEAR(): Gets the year in the date
5) Date conversion function DATE_FORMAT()/STR_TO_DATE()
① NOW(): Get the current date and time
select now();
②DAY(): Get the day in the date
select day(now());
③MONTH(): Gets the month in the date
select MONTH(now());
④ YEAR(): Gets the year in the date
select year(now());
⑤ Date conversion function DATE_FORMAT()/STR_TO_DATE()
DATE_FORMAT(): Convert date to string
select now(),DATE_FORMAT(now(),'%Y year %m month %d Japan ')
STR_TO_DATE(): Convert string to date
select STR_TO_DATE('2022-12-12','%Y-%m-%d')
Case a : Check the age of each student , Only by year
select s.*,YEAR(now())-year(s.sage) from t_student s
Case 2 : According to the date of birth , Current month day < The date of birth is , Age minus one
select s.*,YEAR(now())-year(s.sage)+if(month(now())<MONTH(s.sage),-1,0) from t_student s
Case three : Check out the students who have birthdays this month ( If not, it will be displayed as NULL)
select * from t_student where MONTH(now()) = MONTH(sage);
Case four : Check out the students who have their birthday next month ( The two methods ):
select * from t_student where MONTH(now())+1 = MONTH(sage);
select * from t_student where date_add(NOW(), interval 1 MONTH) = MONTH(sage);
Two 、 String function
2. String function
1) UPPER()/LOWER(): Case to case
2) REPLACE(): Search and replace substrings in a string
3) SUBSTRING(): The last substring starting at a position with a specific length
4) TRIM(): Remove the space before and after
5) LENGTH(): Get string length
6) CONCAT(): Merge string functions , The result is the string generated by the connection parameter , Parameters can be one or more
3. Number function
1)FLOOR: Rounding down
2)CEIL: Rounding up
3)ROUND: rounding
① UPPER() / LOWER(): Case to case
select upper(' beautiful girl ')
select lower(' GOOD MAN')
②REPLACE(): Search and replace substrings in a string
select 'zhangqiag',REPLACE('zhang-qiag','-',' ');
③ SUBSTRING(): The last substring starting at a position with a specific length
select SUBSTRING('zhang qiang na li',2,5)// From the beginning to the end
select SUBSTRING('zhang qiang na li',5)// From the first few , Until the end
④ TRIM(): Remove the space before and after
⑤ LENGTH(): Get string length
select LENGTH(' zhang qiang na li'),LENGTH(trim(' zhang qiang na li '))
⑥CONCAT(): Merge string functions , The return result is the string generated by the connection parameter , Parameters can be one or more
select CONCAT('zhangqiang111','nali222');
⑦FLOOR: Rounding down
⑧CEIL: Rounding up
⑨ROUND: rounding
select FLOOR(-3.14),FLOOR(3.14), CEIL(-3.14), CEIL(3.14),round(-3.14),round(3.14)
3、 ... and 、 Conditional judgment function
1)IF(expr,v1,v2) If expr yes TRUE Then return to v1, Otherwise return to v2
2)IFNULL(v1,v2) If v1 Not for NULL, Then return to v1, Otherwise return to v2
3)CASE expr WHEN v1 THEN r1 [WHEN v2 THEN v2] [ELSE rn] END
If expr Is equal to a vn, Then return to the corresponding position THEN The latter result , If you don't want to wait with all the values , Then return to ELSE hinder rn
①IF(expr,v1,v2) If expr yes TRUE Then return to v1, Otherwise return to v2
②IFNULL(v1,v2) If v1 Not for NULL, Then return to v1, Otherwise return to v2
SELECT
s.sid,
s.sname,
sum( IF ( sc.cid = '01', sc.score, 0 ) ) Chinese language and literature ,
sum( IF ( sc.cid = '02', sc.score, 0 ) ) mathematics ,
sum( IF ( sc.cid = '03', sc.score, 0 ) ) English
FROM
t_student s
LEFT JOIN t_score sc ON s.sid = sc.sid
GROUP BY s.sid,s.sname
③case ...when....
select
s.sid,s.sname,
SUM(case when sc.cid='01' then sc.score end) Chinese language and literature ,
SUM(case when sc.cid='02' then sc.score end) mathematics ,
SUM(case when sc.cid='03' then sc.score end) English
from
t_student s left join t_score sc on s.sid=sc.sid
group by s.sid,s.sname
Four 、 Merge functions
1)UNION: Merge all the query results , Then remove the same records
2)UNION ALL: Merge all the query results , The same records will not be removed
①UNION: Merge the query results , Then remove the same records
select 1,'zs',18
union
select 2,'ls',22
union
select 2,'ls',22
②UNION ALL: Merge all the query results , The same records will not be removed
select 1,'zs',18
union all
select 2,'ls',22
union all
select 2,'ls',22
5、 ... and 、 Aggregate functions
Aggregate functions (SUM/COUNT/AVG/MAX/MIN)
SUM(): Sum up . Often with GROUP BY Use it together , It can also be used alone
AVG(): averaging . Often with GROUP BY Use it together , It can also be used alone
MAX(): For maximum . Often with GROUP BY Use it together , It can also be used alone
MIN(): For the minimum . Often with GROUP BY Use it together , It can also be used alone
COUNT(): Count the number of records . Often with GROUP BY Use it together , It can also be used alone
I shared it last time, and I'll mention it this time !
边栏推荐
- 妙才周刊 - 8
- 激光slam学习记录
- MySql——CRUD
- Yunna | what are the main operating processes of the fixed assets management system
- [QT] QT uses qjson to generate JSON files and save them
- GFS分布式文件系統
- DEJA_ Vu3d - cesium feature set 055 - summary description of map service addresses of domestic and foreign manufacturers
- PV静态创建和动态创建
- [gym 102832h] [template] combination lock (bipartite game)
- 20220703 周赛:知道秘密的人数-动规(题解)
猜你喜欢
[noi simulation] Anaid's tree (Mobius inversion, exponential generating function, Ehrlich sieve, virtual tree)
Tools to improve work efficiency: the idea of SQL batch generation tools
How much do you know about the bank deposit business that software test engineers must know?
Initialiser votre vecteur & initialisateur avec une liste Introduction à la Liste
GFS Distributed File System
Spire. PDF for NET 8.7.2
Hardware and interface learning summary
数据库遇到的问题
GFS distributed file system
FFMPEG关键结构体——AVFormatContext
随机推荐
C# 文件与文件夹操作
【NOI模拟赛】Anaid 的树(莫比乌斯反演,指数型生成函数,埃氏筛,虚树)
Spire Office 7.5.4 for NET
2022.7.5-----leetcode.729
XML configuration file (DTD detailed explanation)
2022.7.5-----leetcode. seven hundred and twenty-nine
Part III Verilog enterprise real topic of "Niuke brush Verilog"
DEJA_ Vu3d - cesium feature set 055 - summary description of map service addresses of domestic and foreign manufacturers
What are Yunna's fixed asset management systems?
转:未来,这样的组织才能扛住风险
云呐|固定资产管理系统功能包括哪些?
PV static creation and dynamic creation
选择致敬持续奋斗背后的精神——对话威尔价值观【第四期】
Choose to pay tribute to the spirit behind continuous struggle -- Dialogue will values [Issue 4]
MySQL global lock and table lock
PV静态创建和动态创建
DEJA_VU3D - Cesium功能集 之 055-国内外各厂商地图服务地址汇总说明
Transport layer protocol ----- UDP protocol
多普勒效應(多普勒頻移)
[EF core] mapping relationship between EF core and C data type