What does mysql's is null mean?
In mysql, "is null" refers to a null value query, which is used to determine whether the value of a field is null (NULL). If the value of the field is null, the query conditions are met and the record will be queried; if the value of the field is not null, the query conditions are not met. "is null" is a comparison operator, so it can be used anywhere an operator can be used, such as in a select or where statement.
The operating environment of this tutorial: windows7 system, mysql8 version, Dell G3 computer.
MySQL IS NULL: Null value query
MySQL provides the IS NULL keyword to determine whether the field value is null ( NULL). The null value is different from 0, which is also different from the empty string.
If the value of the field is null, the query conditions are met and the record will be queried. If the value of the field is not null, the query condition is not met.
The basic syntax format for using IS NULL is as follows:
IS [NOT] NULL
Among them, "NOT" is an optional parameter, indicating that the condition is met when the field value is not a null value.
If the value is null, the expression returns TRUE, otherwise it returns FALSE.
Note that MySQL does not have a built-in BOOLEAN type (Boolean value). It uses TINYINT(1) to represent the BOOLEAN value, that is, 1 represents TRUE and 0 represents FALSE.
is null is a comparison operator, so it can be used anywhere an operator can be used, such as in a select or where statement.
SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;
To check that a field is not NULL, you can use is not null.
SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;
Example
Find customers without a sales representative using the IS NULL operator from the customers table:
SELECT customerName, country, salesRepEmployeeNumber FROM customers WHERE salesRepEmployeeNumber IS NULL ORDER BY customerName LIMIT 5;
Special functions of MySQL IS NULL
In order to be compatible with ODBC programs, MySQL supports some special functions of the IS NULL operator .
1) If there are constraints such as NOT NULL and a field in the format of date or datetime that contains the special date '0000-00-00', you can use the is null operator to find it.
CREATE TABLE IF NOT EXISTS projects ( id INT AUTO_INCREMENT, title VARCHAR(255), begin_date DATE NOT NULL, complete_date DATE NOT NULL, PRIMARY KEY(id) ); INSERT INTO projects(title,begin_date, complete_date) VALUES('New CRM','2020-01-01','0000-00-00'), ('ERP Future','2020-01-01','0000-00-00'), ('VR','2020-01-01','2030-01-01'); SELECT * FROM projects WHERE complete_date IS NULL;
Created a table named projects, whose complete_date field is not null and contains the special date '0000-00-00'.
Use complete_date IS NULL to get the row with the date '0000-00-00'.
2) Continue to use the projects table.
If the variable @@sql_auto_is_null is set to 1, you can get the value of the id generated column after the insert statement is executed using the is null operator.
Note that by default, @@sql_auto_is_null is set to 0.
set @@sql_auto_is_null =1; insert into projects (title,begin_date,complete_date) values('MRP III','2010-01-01','2020-12-31'); select id from projects where id is null;
[Related recommendations: mysql video tutorial]
The above is the detailed content of What does mysql's is null mean?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

The process of starting MySQL in Docker consists of the following steps: Pull the MySQL image to create and start the container, set the root user password, and map the port verification connection Create the database and the user grants all permissions to the database

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

The key to installing MySQL elegantly is to add the official MySQL repository. The specific steps are as follows: Download the MySQL official GPG key to prevent phishing attacks. Add MySQL repository file: rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm Update yum repository cache: yum update installation MySQL: yum install mysql-server startup MySQL service: systemctl start mysqld set up booting

Installing MySQL on CentOS involves the following steps: Adding the appropriate MySQL yum source. Execute the yum install mysql-server command to install the MySQL server. Use the mysql_secure_installation command to make security settings, such as setting the root user password. Customize the MySQL configuration file as needed. Tune MySQL parameters and optimize databases for performance.

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

MySQL is suitable for web applications and content management systems and is popular for its open source, high performance and ease of use. 1) Compared with PostgreSQL, MySQL performs better in simple queries and high concurrent read operations. 2) Compared with Oracle, MySQL is more popular among small and medium-sized enterprises because of its open source and low cost. 3) Compared with Microsoft SQL Server, MySQL is more suitable for cross-platform applications. 4) Unlike MongoDB, MySQL is more suitable for structured data and transaction processing.
