search
HomeDatabaseMysql TutorialMYSQL function usage example analysis

MYSQL function

1: Aggregation function

Aggregation function mainly consists of: count,sum,min,max,avg,group_count()

Focus on group_count( ) function, first group according to the column specified by group by, and separate it with a delimiter, connect the values ​​​​in the same group, and return a string result.

Format: group_count([distinct ]Field name [order by sorting field asc/desc] [separator 'separator'])

Description:

1: Use distinct to exclude duplicate values.
2 : If you need to sort the result values, you can use the order by clause.
3:separator is a string value, the default is a comma.

2: Mathematical function

1:ABS(x) returns the absolute value of x
2:CEIL(x) returns the smallest integer greater than or equal to x (rounded up)
3:FLOOR(x) returns the largest integer less than or equal to x( Round down)
4:GREATEST(expr1,expr2...) returns the maximum value in the list
5:LEAST(expr1,expr2....) returns the minimum value of the list
6 :MAX(x) Returns the maximum value of field x
7:MIN(x) Returns the minimum value of field x
8:MOD(x,y) Returns the remainder after dividing x by y
9: PI() returns pi (3.141593)
10:POW(x,y) returns x raised to the power of y
11:RAND() returns a random number from 0 to 1
12:ROUND(x) returns The nearest integer to x (following rounding)
13:ROUND(x,y) Returns the specified number of decimal places (following rounding)
14:TRUNCATE(x,y) Returns the value x to y decimal places value, (the biggest difference from ROUND is that it will not be rounded)

2: String function

1: char_length(s) returns the string s Number of characters
2:character_length Returns the number of characters of string s
3:concat(s1,s2,s3) Strings s1, s2 and other strings are combined into one string
4:concat_ws( x,s1,s2..) Same as concat(s1,s2,s3) function, but x is added between each string, x can be a separator
5:field(s,s1,s2) return The position of the first string s in the string list (s1, s2..)
6:length() returns the number of bytes. The encoding of utf-8 in mysql is three bytes for a Chinese character
7:ltrim(s) removes the spaces at the beginning of the string s and removes the spaces on the left. rtrim() removes the spaces on the right. trim() removes the spaces on both sides.
8: mid(s,n,len) from the string Intercepting a substring of length len at position n of s is the same as substring(s,n,len)
9:position(s1,in,s) Get the starting position of s1 from string s
10:replcae (s,s1,s2) Replace string s2 with string s1 in string s
11:reverse(s) Reverse the order of string s
12:right(s,n)Return characters The last n characters of string s (n characters taken from the right)
13:strcmp(s1,s2) Compares strings s1 and s2. If s1 and s2 are equal, 0 is returned. If s1>s2, 1 is returned. If s1 is less than s2 returns -1
14:substr(s,start,length) intercepts a substring of length length from the start position of string s
15:ucase(s) upper(s)converts the string to Uppercase
16:lcase(s) lower(s) Convert the string to lowercase

3:Date function

1:unix_timestamp() returns 1970- 01-01 00:00:00 to the current millisecond value
2:unix_timestamp(date_string) Convert the specified date to a millisecond value timestamp
3:from_unixtime(bigint unixtime,string-format) Convert the millisecond value timestamp For the specified format date
4:curdate() returns the current date
5:current_date() returns the current date
6:current_timestamp() returns the current date and time
7:datediff(d1,d2) Calculate the number of days between dates d1>d2 eg:datediff('2022-01-01','2022-02-01')
8:currtime() Return the current time
9:date_format(d, f) Display date d according to the requirements of expression f

4: Control flow function

1:if(expr,v1,v2) If the expression expr is true, return Result v1, otherwise return result v2
2:ifnull(v1,v2) If the value of v1 is null, return v1, otherwise return v2
3:isnull(expression) Determine whether the expression is null
4 :nullif(expr1,expr2) Compares two strings. If the strings expr1 and expr2 are equal, return null, otherwise return expr1
5:case expression when condition1 then result1 when condition2 then result2 else result end represents the start of the case function, and end represents the function End, if condition1 is established, return result1, if condition2 is established, return result2, if all are not established, return result, and when one is established, the following will not be executed.

5: Window function

The window function newly added in mysql8.0 is also called the window function. The non-aggregation window function is relative to the aggregate function. The aggregate function returns a single value (that is, grouping) after calculating a set of data. Non-aggregate functions will only process one row of data at a time. When the window aggregate function calculates the result of a certain field on a row record, the data within the window range can be input into the aggregate function without changing the number of rows

5.1 The serial number function

can realize group sorting and add the serial number

1: row_number()
2: rank()
3: dense_rank()

Writing: select id,...,dense_rank() over(partition by dname order by salary desc) as rn from employee;

Note: Do not add partition by Indicates global sorting

MYSQL function usage example analysis

5.2 Distribution function

1: percent_rank()
Purpose: Each row is based on the formula (rank-1)/(row- 1) Calculate. Rank is the sequence number generated by the rank() function, and row is the total number of rows of records in the current window.
2: cume_dist()
Purpose: Within the group, it is less than or equal to the current rank Number of rows of value/total number of rows in the group
Application scenario: Query the proportion that is less than or equal to the current salary

Writing method: select dname,ename,salary,cume_dist() over(order by salary) as rn1,
cume_dist() over(partition by dname order by salary) as rn2 from employee;

MYSQL function usage example analysis

##5.3 Before and after functions
1: lag(expr,n)

2: lead(expr,n)

Purpose: Return the n lines before or after the current line (lag(exor,n)) The value of expr in row n (lead(expr,n))

Application scenario: Query the difference between the score of the first student and the score of the current student (there can be a field of the previous row of data in the current row) value)

MYSQL function usage example analysis

MYSQL function usage example analysis

5.4 Head and tail functions
1: first_value(expr)

2: last_value(expr)

Purpose: Return the value of the first (first_value(expr)) or the last (last_value(expr)) expr

Application scenario: As of now, sort by date Query the salary of the first and last employee

MYSQL function usage example analysis

5.5 Other functions
1: nth_value(expr,n)

2: ntile(n)

Purpose: Return the value of the nth expr in the window. expr can be an expression or a column name

Application scenario: As of the current salary, display The second or third salary of each employee

MYSQL function usage example analysis

MYSQL function usage example analysis##5.6 Windowed aggregate function

1: sum()
2: avg()

3: min()
4: max()

Writing: select id,.. .,sum(salary) over(partition by dname order by hiredate desc) as rn from employee;

The data of each row of rn is the sum of the current row and the salary of each previous row
If If there is no order by sorting statement, all data in the group will be summed by default


The above is the detailed content of MYSQL function usage example analysis. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use