<> OperatorFunction: 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"; <=> OperatorFunction: 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:
|
<<: HTML table markup tutorial (1): Creating a table
>>: vue+el-upload realizes dynamic upload of multiple files
Although I have run some projects in Docker envir...
1. Uninstall the JDK that comes with centeros fir...
What is the Vendor Prefix? Vendor prefix—Browser ...
Table of contents Skeleton screen use Vue archite...
question How to modify CSS pseudo-class style wit...
Installation path: /application/mysql-5.7.18 1. P...
Technical Background This application uses the vu...
Due to the advantages of GTID, we need to change ...
Table of contents 1. Implementation of counter 2....
This article shares the specific code of JavaScri...
Container auto-start Docker provides a restart po...
*Create a page: two input boxes and a button *Cod...
1. Install zabbix-agent on web01 Deploy zabbix wa...
If you want to change your host name, you can fol...
This article mainly introduces the solution to th...