1. Commonly used string functions in MySQL
1: CANCAT(S1,S2,…Sn) function connects the passed parameters into a string.
mysql> select concat('aaa','bbb','d'),concat('dd',null); +-------------------------+-------------------+ | concat('aaa','bbb','d') | concat('dd',null) | +-------------------------+-------------------+ | aaabbbd | NULL | +-------------------------+-------------------+ 1 row in set (0.00 sec) 2: INSERT(str, x, y, instr) function: replaces the substring of string str starting from position x and y characters long with string instr. Replace the 3 characters starting from the 3rd character in the string "123456" with "me" mysql> select insert('123456',3,3,'me'); +---------------------------+ | insert('123456',3,3,'me') | +---------------------------+ |12me6| +---------------------------+ 1 row in set (0.02 sec) 3: LOWER(str) and UPPER(str) functions: convert a string to lowercase or uppercase. mysql> select lower("ZHANG"),upper("zhang"); +----------------+----------------+ | lower("ZHANG") | upper("zhang") | +----------------+----------------+ | zhang | ZHANG | +----------------+----------------+ 1 row in set (0.00 sec) 4: LEFT(str,x) and RIGHT(str,x) functions: return the leftmost x characters and rightmost x characters of the string respectively. Note: If the second argument is NULL, no string will be returned. mysql> select left('zhang',2),left('zhang',null),right('zhang',2),left('zhang',10); +-----------------+--------------------+------------------+------------------+ | left('zhang',2) | left('zhang',null) | right('zhang',2) | left('zhang',10) | +-----------------+--------------------+------------------+------------------+ | zh | NULL | ng | zhang | +-----------------+--------------------+------------------+------------------+ 1 row in set (0.00 sec) 5: LPAD(str,n,pad) and RPAD(str,n,pad) functions: pad the leftmost and rightmost parts of str with the string pad until the length is n characters. mysql> select lpad('bin',8,'zhang'),rpad('zhang',8,'bin'),rpad('beijing',20,'2008'); +----------------------+-----------------------+---------------------------+ | lpad('bin',8,'zhang') | rpad('zhang',8,'bin') | rpad('beijing',20,'2008') | +----------------------+-----------------------+---------------------------+ | zhangbin | zhangbin | beijing2008200820082 | +----------------------+-----------------------+---------------------------+ 1 row in set (0.00 sec) 6: LTRIM(str) and RTRIM(str) functions: remove spaces on the left and right sides of the string str. mysql> select ' zhang',ltrim(' zhang'),rtrim('zhang '); +----------+-------------------+--------------------+ | zhang | ltrim(' zhang') | rtrim('zhang ') | +----------+-------------------+--------------------+ | zhang | zhang | zhang | +----------+-------------------+--------------------+ 1 row in set (0.00 sec) 7:REPEAT(str,x) function: returns the result of str repeated x times. mysql> select repeat('mysql',5); +---------------------------+ | repeat('mysql',5) | +---------------------------+ |mysqlmysqlmysqlmysqlmysql| +---------------------------+ 1 row in set (0.00 sec) 8:REPLACE(str,a,b) function: Replace all occurrences of string a in string str with string b. mysql> select replace('mysql','sql','ddd'); +------------------------------+ | replace('mysql','sql','ddd') | +------------------------------+ |myddd| +------------------------------+ 1 row in set (0.00 sec) 9:STRCMP(s1,s2) function: compares the ASCII code values of strings s1 and s2. Returns -1 if s1 is less than s2, 0 if s1 is equal to s2, and 1 if s1 is greater than s2. mysql> select strcmp('a','b'),strcmp('b','b'),strcmp('c','b'),strcmp('a','A'); +-----------------+-----------------+-----------------+-----------------+ | strcmp('a','b') | strcmp('b','b') | strcmp('c','b') | strcmp('a','A') | +-----------------+-----------------+-----------------+-----------------+ | -1 | 0 | 1 | 0 | +-----------------+-----------------+-----------------+-----------------+ 1 row in set (0.01 sec) 10:TRIM(str) function: removes spaces at the beginning and end of the target string. mysql> select trim(' 111 $mysql$ '); +-----------------------------+ | trim(' 111 $ mysql $ ') | +-----------------------------+ | 111 $mysql$ | +-----------------------------+ 1 row in set (0.01 sec) 11:SUBSTRING(str,x,y) function: Returns a string of y characters starting from the xth position in the string str. mysql> select substring('mysqlisdd',4,4); +----------------------------+ | substring('mysqlisdd',4,4) | +----------------------------+ |qlis| +----------------------------+ 1 row in set (0.00 sec) 2. Numerical functions
1: ABS(x) function: returns the absolute value of x. mysql> select abs(-0.3),abs(0.3); +-----------+----------+ | abs(-0.3) | abs(0.3) | +-----------+----------+ | 0.3 | 0.3 | +-----------+----------+ 1 row in set (0.36 sec) 2: CEIL(x) function, returns the largest integer greater than x mysql> select ceil(-0.2),ceil(0.2); +------------+-----------+ | ceil(-0.2) | ceil(0.2) | +------------+-----------+ | 0 | 1 | +------------+-----------+ 1 row in set (0.00 sec) 3: FLOOR(x) function, returns the largest integer less than x, which is exactly the opposite of CEIL mysql> select floor(-0.2),floor(0.2); +-------------+------------+ | floor(-0.2) | floor(0.2) | +-------------+------------+ | -1 | 0 | +-------------+------------+ 1 row in set (0.00 sec) 4: MOD(x, y) function: returns the modulus of x/y. The result is the same as x%y. If either the modulus or the modulo is NULL, the result is NULL. As shown in the following example: mysql> select mod(15,10),mod(1,11),mod(null,10); +------------+-----------+--------------+ | mod(15,10) | mod(1,11) | mod(null,10) | +------------+-----------+--------------+ | 5 | 1 | NULL | +------------+-----------+--------------+ 1 row in set (0.00 sec) 5: RAND() function, returns a random number between 0 and 1 mysql> select rand(),rand(); +-------------------+---------------------+ | rand() | rand() | +-------------------+---------------------+ | 0.541937319135235 | 0.10546984067696132 | +-------------------+---------------------+ 1 row in set (0.00 sec) 6: ROUND(x,y) function, returns the rounded value of parameter x with y decimal places. If it is an integer, y digits of 0 will be retained; if y is not written, y is assumed to be 0, that is, x is rounded to the nearest integer. mysql> select round(1.2,2),round(1.3),round(1,2); +--------------+------------+------------+ | round(1.2,2) | round(1.3) | round(1,2) | +--------------+------------+------------+ | 1.20 | 1 | 1 | +--------------+------------+------------+ 1 row in set (0.00 sec) 7: TRUNCATE(x,y) function: Returns the result of number x truncated to y decimal places. (Note that the difference between TRUNCATE and ROUND is that TRUNCATE only truncates, not rounds.) mysql> select round(1.235,2),truncate(1.235,2); +----------------+-------------------+ | round(1.235,2) | truncate(1.235,2) | +----------------+-------------------+ | 1.24 | 1.23 | +----------------+-------------------+ 1 row in set (0.31 sec) 3. Date and time functionsCommon date and time functions in MySQL:
1: CURDATE() function: Returns the current date, including only year, month and day mysql> select curdate(); +------------+ | curdate() | +------------+ | 2021-05-25 | +------------+ 1 row in set (0.00 sec) 2: CURTIME() function: returns the current time, including only hours, minutes and seconds mysql> select curtime(); +-----------+ | curtime() | +-----------+ | 14:07:06 | +-----------+ 1 row in set (0.00 sec) 3: NOW() function: Returns the current date and time, including year, month, day, hour, minute and second. mysql> select now(); +---------------------+ | now() | +---------------------+ | 2021-05-25 14:07:33 | +---------------------+ 1 row in set (0.00 sec) 4: UNIX_TIMESTAMP(date) function: returns the UNIX timestamp of date date. mysql> select unix_timestamp(now()); +-----------------------+ | unix_timestamp(now()) | +-----------------------+ |1621922906 | +-----------------------+ 1 row in set (0.30 sec) 5: FROM_UNIXTIME (unixtime) function: Returns the date value of the UNIXTIME timestamp, which is the inverse operation of UNIX_TIMESTAMP(date). mysql> select from_unixtime(1621922906); +---------------------------+ | from_unixtime(1621922906) | +---------------------------+ | 2021-05-25 14:08:26 | +---------------------------+ 1 row in set (0.31 sec) 6: WEEK(DATE) and YEAR(DATE) functions: The former returns the week of the year for the given date, and the latter returns the year for the given date. mysql> select week(now()),year(now()); +-------------+-------------+ | week(now()) | year(now()) | +-------------+-------------+ | 21 | 2021 | +-------------+-------------+ 1 row in set (0.00 sec) 7: HOUR(time) and MINUTE(time) functions: the former returns the hour of the given time, and the latter returns the minute of the given time. mysql> select hour(now()),minute(now()); +-------------+---------------+ | hour(now()) | minute(now()) | +-------------+---------------+ | 14 | 11 | +-------------+---------------+ 1 row in set (0.00 sec) 8: MONTHNAME(date) function: returns the English month name of date. mysql> select monthname(now()); +------------------+ | monthname(now()) | +------------------+ | May | +------------------+ 1 row in set (0.30 sec) 9: DATE_FORMAT(date,fmt) function: Formats the date value according to the string fmt. This function can display the date in the specified format. The available format characters are as shown in the table:
mysql> select date_format(now(),'%M,%D,%Y'); +-------------------------------+ | date_format(now(),'%M,%D,%Y') | +-------------------------------+ | May,25th,2021 | +-------------------------------+ 1 row in set (0.00 sec) 10: As shown in the following table: Date interval types in MySQL:
mysql> select now() current,date_add(now(),interval 31 day) after31days,date_add(now(),interval '1_2' year_month) after_oneyear_twomonth; +---------------------+---------------------+------------------------+ | current | after31days | after_oneyear_twomonth | +---------------------+---------------------+------------------------+ | 2021-05-25 14:32:30 | 2021-06-25 14:32:30 | 2022-07-25 14:32:30 | +---------------------+---------------------+------------------------+ 1 row in set (0.03 sec) You can also use negative numbers to return to a previous date and time. For example, the first column below returns the current date and time, the second column returns the date and time 31 days before the current date, and the third column returns the date and time one year and two months before the current date. mysql> select now() current,date_add(now(),interval -31 day) before31days,date_add(now(),interval '-1_-2' year_month) before_oneyear_twomonth; +---------------------+---------------------+----------------------+ | current | bef31days | bef_oneyear_twomonth | +---------------------+---------------------+----------------------+ | 2021-05-25 14:34:38 | 2021-04-24 14:34:38 | 2020-03-25 14:34:38 | +---------------------+---------------------+----------------------+ 1 row in set (0.00 sec) 11: DATEDIFF (date1, date2) function: used to calculate the difference in days between two dates mysql> select datediff('2013-09-01',now()); +------------------------------+ | datediff('2013-09-01',now()) | +------------------------------+ |-2823 | +------------------------------+ 1 row in set (0.30 sec) 4. Process FunctionProcess functions in MySQL:
1: IF(value,tf), Example: Create and initialize an employee salary table, insert some test data, we believe that employees with a monthly salary of more than 2,000 yuan are high-paid, represented by "high", and employees with a monthly salary of less than 2,000 yuan are low-paid, represented by "low". mysql> create table salary(userid int,salary decimal(9,2)); Query OK, 0 rows affected (0.47 sec) mysql> insert into salary values(1,1000),(2,2000),(3,3000),(4,4000),(5,5000),(1,null); Query OK, 6 rows affected (0.00 sec) Records: 6 Duplicates: 0 Warnings: 0 mysql> select * from salary; +--------+---------+ | userid | salary | +--------+---------+ | 1 | 1000.00 | | 2 | 2000.00 | | 3 | 3000.00 | | 4 | 4000.00 | | 5 | 5000.00 | | 1 | NULL | +--------+---------+ 6 rows in set (0.00 sec) mysql> select if(salary>2000,'high','low') from salary; +------------------------------+ | if(salary>2000,'high','low') | +------------------------------+ | low | | low | | high | | high | | high | | low | +------------------------------+ 6 rows in set (0.31 sec) 2: IFNULL(value1,value2) function is generally used to replace NULL values. We know that NULL values cannot participate in numerical operations. The following statement replaces NULL values with 0. mysql> select ifnull(salary,0) from salary; +------------------+ | ifnull(salary,0) | +------------------+ | 1000.00 | | 2000.00 | | 3000.00 | | 4000.00 | | 5000.00 | | 0.00 | +------------------+ 6 rows in set (0.00 sec) 3:CASE WHEN [value1] THEN [result1]…ELSE [default] END function: We can also use the case when…then function to solve the problem of high salary and low salary in the above example. mysql> select case when salary<=2000 then 'low' else 'high' end from salary; +---------------------------------------------------+ | case when salary<=2000 then 'low' else 'high' end | +---------------------------------------------------+ | low | | low | | high | | high | | high | | high | +---------------------------------------------------+ 6 rows in set (0.29 sec) 4:CASE [expr] WHEN [value1] THEN[result1]…ELSE[default]END function: Here you can also divide the employee's salary into multiple levels according to multiple situations, such as the example below, which is divided into three levels: high, medium and low. mysql> select case salary when 1000 then 'low' when 2000 then 'mid' else 'high' end from salary; +-----------------------------------------------------------------------+ | case salary when 1000 then 'low' when 2000 then 'mid' else 'high' end | +-----------------------------------------------------------------------+ | low | | mid | | high | | high | | high | | high | +-----------------------------------------------------------------------+ 6 rows in set (0.00 sec) 5. Other commonly used functionsOther commonly used functions in MySQL:
1: DATABASE() function: returns the current database name. mysql> select database(); +------------+ | database() | +------------+ | test | +------------+ 1 row in set (0.00 sec) 2: VERSION() function: returns the current database version. mysql> select version(); +-----------+ | version() | +-----------+ | 5.7.26 | +-----------+ 1 row in set (0.00 sec) 3: USER() function: returns the currently logged-in user name. mysql> select user(); +----------------+ | user() | +----------------+ | root@localhost | +----------------+ 1 row in set (0.00 sec) 4: INET_ATON(IP) function: Returns the network byte order representation of the IP address. mysql> select inet_aton('192.168.1.1'); +--------------------------+ | inet_aton('192.168.1.1') | +--------------------------+ |3232235777 | +--------------------------+ 1 row in set (0.30 sec) 5: INET_NTOA(num) function: returns the IP address represented by network byte order. mysql> select inet_ntoa('3232235777'); +-------------------------+ | inet_ntoa('3232235777') | +-------------------------+ | 192.168.1.1 | +-------------------------+ 1 row in set (0.00 sec) 6: PASSWORD(str) function: Returns the encrypted version of the string str, a 41-bit string. mysql> select password('1223456'); +-------------------------------------------+ | password('1223456') | +-------------------------------------------+ | *3B5C2394E86BB91F1D03C5A1F2D3962BB287590B | +-------------------------------------------+ 1 row in set, 1 warning (0.33 sec) 7: MD5(str) function: returns the MD5 value of the string str, which is often used to encrypt data in applications. mysql> select md5('123456'); +----------------------------------+ | md5('123456') | +----------------------------------+ |e10adc3949ba59abbe56e057f20f883e | +----------------------------------+ 1 row in set (0.30 sec) This is the end of this article on the comprehensive summary of MySQL functions. For more relevant MySQL function content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Summary of the differences between get and post requests in Vue
>>: Detailed steps to deploy lnmp under Docker
In order to make the table fill the screen (the re...
1. Introduction to MySQL permissions There are 4 ...
One day I found that the execution speed of a SQL...
Table of contents Introduction to utf8mb4 UTF8 by...
As shown below: name describe character varying(n...
Many friends have always wanted to know how to ru...
Table of contents Start and stop Database related...
1. Install the express library and generator Open...
Find two test machines: [root@docker1 centos_zabb...
After configuring the tabBar in the WeChat applet...
Preface I feel like my mind is empty lately, as I...
I recently discussed "advertising" with...
The component lifecycle is usually where our busi...
brew install nginx Apple Mac uses brew to install...
1. Grid layout (grid): It divides the web page in...