Summary of methods for writing judgment statements in MySQL

Summary of methods for writing judgment statements in MySQL

How to write judgment statements in mysql:

Method 1. CASE function

case function syntax:

CASE condition
WHEN value1 THEN returnvalue1
WHEN value2 THEN returnvalue2
WHEN value3 THEN returnvalue3
…
ELSE defaultvalue
END

Example:

SELECT username,(CASE sex WHEN 1 THEN 'male' WHEN 2 THEN 'female' ELSE 'unknown' END) as sex FROM user;

The query results are as follows:

e08a6ceb7c5f565e980547c90d0981c.png

Method 2. IF() function

The CASE function can implement very complex logical judgments. If it implements a simple judgment logic like A if the condition is met, and B otherwise, the CASE function will appear bloated. MYSQL provides the IF() function to simplify this kind of logical judgment. Its syntax format is as follows: IF(condition,A,B)

If condition is true, return A, otherwise return B. So if there are multiple conditions, you cannot use the IF function. IF() returns a number or a string.

select username,if(sex=1,'男','女') as sex from user;

The query results are as follows:

57558ec379007199e539b0a2a063727.png

As you can see, the username zhangsan is displayed as female because our condition is that sex=1 is male, and the others are female. Therefore, the IF function is used to judge only two situations. MySQL also has an IFNULL(value1, value2) function, which is generally used to replace NULL values. We know that NULL values ​​cannot participate in numerical operations.

Method 3. String operation ELT()

grammar:

ELT(N,str1,str2,str3,...)

If N = 1, return str1, if N = 2, return str2, and so on. If N is less than 1 or greater than the number of arguments, returns NULL.

SELECT username,ELT(sex,'男','女','未知') as sex FROM user

The query results are as follows:

2cb2e8899c8d85f8f8c7feeb24b90ae.png

Content extension:

mysql conditional statement

In business scenarios, for example, a user has several states (1: valid, 2: invalid, 3: other), and conditional statements are needed for queries.

grammar:

CASE field WHEN `condition 1` THEN `result 1`
 WHEN `condition 2` THEN `result 2`
 WHEN ...
 ELSE `Other results`
END

Example:

SELECT id,name,
(CASE status
	WHEN 1 THEN 'valid' 
	WHEN 2 THEN 'Invalid' 
ELSE 'Other' 
END) AS status 
FROM user

This is the end of this article summarizing the methods of writing judgment statements in MySQL. For more information about how to write judgment statements in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL uses show status to view MySQL server status information
  • How to get table information in MySQL show table status
  • Summary of commonly used SQL statements for creating MySQL tables
  • Record a pitfall of MySQL update statement update
  • Navicat Premium operates MySQL database (executes sql statements)
  • The difference between two MySQL delete user statements (delete user and drop user)
  • Summary of MySQL database like statement wildcard fuzzy query
  • MySQL data duplicate checking and deduplication implementation statements
  • Summary of MySQL's commonly used concatenation statements
  • Use of MySQL SHOW STATUS statement

<<:  Basic usage of custom directives in Vue

>>:  Docker image cannot be deleted Error: No such image: xxxxxx solution

Recommend

MySQL Series 14 MySQL High Availability Implementation

1. MHA ​By monitoring the master node, automatic ...

Sample code for programmatically processing CSS styles

Benefits of a programmatic approach 1. Global con...

Vue elementUI implements tree structure table and lazy loading

Table of contents 1. Achieve results 2. Backend i...

Nodejs-cluster module knowledge points summary and example usage

The interviewer will sometimes ask you, tell me h...

An example of how to write a big sun weather icon in pure CSS

Effect The effect diagram is as follows Implement...

How to directly reference vue and element-ui in html

The code looks like this: <!DOCTYPE html> &...

WeChat applet realizes the nine-square grid effect

This article shares the specific code for the WeC...

How to optimize MySQL index function based on Explain keyword

EXPLAIN shows how MySQL uses indexes to process s...

About Generics of C++ TpeScript Series

Table of contents 1. Template 2. Generics 3. Gene...

Solve the problem of MySql8.0 checking transaction isolation level error

Table of contents MySql8.0 View transaction isola...