当前位置:网站首页>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 sCase 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.snameFour 、 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',225、 ... 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 !
边栏推荐
- C# 文件与文件夹操作
- Initialiser votre vecteur & initialisateur avec une liste Introduction à la Liste
- Russian Foreign Ministry: Japan and South Korea's participation in the NATO summit affects security and stability in Asia
- Use mapper: --- tkmapper
- 同事悄悄告诉我,飞书通知还能这样玩
- Use CAS instead of synchronized
- GD32F4xx uIP协议栈移植记录
- 15 MySQL stored procedures and functions
- Zhuan: in the future, such an organization can withstand the risks
- 2022.7.5-----leetcode.729
猜你喜欢

Qt QPushButton详解

上门预约服务类的App功能详解

Spire Office 7.5.4 for NET

Miaochai Weekly - 8

Bao Yan notebook IV software engineering and calculation volume II (Chapter 8-12)

FFmpeg学习——核心模块

PADS ROUTER 使用技巧小记

The use of El cascader and the solution of error reporting

Hardware and interface learning summary

Determinant learning notes (I)
随机推荐
Add noise randomly to open3d point cloud
GFS Distributed File System
Configuring OSPF GR features for Huawei devices
Spreadjs 15.1 CN and spreadjs 15.1 en
NSSA area where OSPF is configured for Huawei equipment
Mathematical model Lotka Volterra
DEJA_ Vu3d - cesium feature set 055 - summary description of map service addresses of domestic and foreign manufacturers
FFMPEG关键结构体——AVFormatContext
CloudCompare&PCL 点云随机添加噪声
行列式学习笔记(一)
跟着CTF-wiki学pwn——ret2libc1
什么叫做信息安全?包含哪些内容?与网络安全有什么区别?
PADS ROUTER 使用技巧小记
What is a humble but profitable sideline?
What are the functions of Yunna fixed assets management system?
Problems encountered in the database
15 MySQL stored procedures and functions
【SQL】各主流数据库sql拓展语言(T-SQL 、 PL/SQL、PL/PGSQL)
Open source CRM customer relationship system management system source code, free sharing
Asynchronous task Whenall timeout - Async task WhenAll with timeout





