Introduction to MySQL <> and <=> operators

Introduction to MySQL <> and <=> operators

<> Operator

Function: Indicates not equal to.

Note: It has the same function as the “!=” operator, but “<>” is less readable.

### To query non-Han users, the following two statements have the same effect.
> SELECT * FROM user WHERE nation != "汉族";
> SELECT * FROM user WHERE nation <> "Han";

<=> Operator

Function: Safety is equal to

Note: It integrates the functions of the "=" operator and the IS keyword, and can determine both NULL and basic data types. But in comparison, “<=>” is less readable.

From the following SQL statement, we can see that the "=" operator and the IS keyword cannot be used interchangeably. The "=" operator can only determine basic data types, and the IS keyword can only determine NULL.

The "<=>" operator can be used in relatively few scenarios. It can basically only be used for search conditions. There is no need to determine whether a search condition is NULL or a basic data type.

### Query users who have not filled in their gender. The following statements have the same effect> SELECT * FROM user WHERE sex IS NULL;
> SELECT * FROM user WHERE sex <=> NULL;
 
### Query male users. The following statements have the same effect> SELECT * FROM user WHERE sex = "男";
> SELECT * FROM user WHERE sex <=> "male";

This is the end of this article about the MySQL <> and <=> operators. For more related MySQL <> and <=> content, please search 123WORDPRESS.COM's previous articles 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 Operator Summary
  • Detailed explanation of the use of MySQL comparison operator regular expression matching REGEXP
  • Summary of the use of special operators in MySql
  • Summary of commonly used operators and functions in MySQL
  • MySQL Notes — SQL Operators

<<:  HTML table markup tutorial (1): Creating a table

>>:  vue+el-upload realizes dynamic upload of multiple files

Recommend

How to build php-nginx-alpine image from scratch in Docker

Although I have run some projects in Docker envir...

CenterOS7 installation and configuration environment jdk1.8 tutorial

1. Uninstall the JDK that comes with centeros fir...

Vendor Prefix: Why do we need a browser engine prefix?

What is the Vendor Prefix? Vendor prefix—Browser ...

Example of implementing skeleton screen with Vue

Table of contents Skeleton screen use Vue archite...

Example of how to modify styles via CSS variables

question How to modify CSS pseudo-class style wit...

Vue-cli framework implements timer application

Technical Background This application uses the vu...

Implementation of Vue counter

Table of contents 1. Implementation of counter 2....

JavaScript to achieve tab switching effect

This article shares the specific code of JavaScri...

How to implement Docker container self-start

Container auto-start Docker provides a restart po...

Detailed explanation of dynamically generated tables using javascript

*Create a page: two input boxes and a button *Cod...

Detailed explanation of Linux zabbix agent deployment and configuration methods

1. Install zabbix-agent on web01 Deploy zabbix wa...

How to permanently change the host name in Linux

If you want to change your host name, you can fol...

Analysis of the solution to Nginx Session sharing problem

This article mainly introduces the solution to th...