Three uses and differences of MySQL not equal

Three uses and differences of MySQL not equal

Judgment symbols are often used in MySQL, and not equal to is a more commonly used symbol . The following three not equal to symbols are explained

symbol significance
<> The earliest use of inequality is more portable than the following two
!= Later, MySQL added a function similar to the not equal to function in programming languages ​​such as Java.
not in Add data after "not in" to indicate that it is not in the data.

MySQL recommends using <> to indicate inequality . Why? Because of its strong portability and fast query speed . There is a question on LeetCode, which is a movie theater query question. The title is as follows:

insert image description here

In fact, it is very simple. You can query descriptions that are not boring and ids that are not even numbers, and sort the query results using order by. However, when querying descriptions that are not boring, you need to use the not equal to judgment. The following is a comparison of the query time I used three not equal to

insert image description here

It can be seen that <> is still faster, so it is recommended to use <> to indicate inequality.

There is no point in saying more, let’s give an example! ! !

A simple table data:

select * from user where address != "北京" 

select * from user where address <> "Beijing"

select * from user where address = null

select * from user where address is null

select * from user where address != null

Summarize:

select * from user where address != "北京"
 
select * from user where address <> "Beijing"
 
select * from user where address = null
select * from user where address is null
 
select * from user where address != null
select * from user where address is not null

Just a few sentences and three extremely common points, perhaps we are at a loss and hesitant when answering.

In <> and! = are equivalent. When a field is not equal to a certain value (a non-empty value), the output result is that this field is empty and not output.

is and is not are used in conjunction with null . I call it is not, not empty.

This concludes this article about the three uses and differences of MySQL not equal. For more relevant MySQL not equal content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of how to write mysql not equal to null and equal to null
  • mysql not equal to symbol writing

<<:  Ten Experiences in Web Design in 2008

>>:  Vue+openlayer5 method to get the coordinates of the current mouse slide

Recommend

VUE+SpringBoot implements paging function

This article mainly introduces how to implement a...

A simple way to build a Docker environment

First, let’s understand what Docker is? Docker is...

CSS and JS to achieve romantic meteor shower animation

1. Rendering 2. Source code HTML < body > &...

How to enable the root account in Ubuntu 20.04

After Ubuntu 20.04 is installed, there is no root...

Draw an iPhone based on CSS3

Result:Implementation Code html <div class=...

Introduction to using MySQL commands to create, delete, and query indexes

MySQL database tables can create, view, rebuild a...

Three ways to align div horizontal layout on both sides

This article mainly introduces three methods of i...

Detailed Linux installation tutorial

(Win7 system) VMware virtual machine installation...

How to deploy Spring Boot using Docker

The development of Docker technology provides a m...

Tutorial on importing and exporting Docker containers

background The popularity of Docker is closely re...

HTML Web Page List Tags Learning Tutorial

HTML web page list tag learning tutorial. In HTML ...

Writing methods that should be prohibited in native JS

Table of contents Block-level functions Directly ...

How to view and modify the time zone in MySQL

Today I found that a program inserted an incorrec...

Vue implements simple calculator function

This article example shares the specific code of ...

Summary of the use of CSS scope (style splitting)

1. Use of CSS scope (style division) In Vue, make...