In daily development, database addition, deletion, modification and query are generally involved, so it is inevitable to encounter NULL and empty characters in Mysql. definition:
In layman's terms: An empty string ('') is like a vacuum cup, containing nothing. the difference:
Examples:
CREATE TABLE test_ab (id int, col_a varchar(128), col_b varchar(128) not null ); insert test_ab(id,col_a,col_b) values(1,1,1); insert test_ab(id,col_a,col_b) values(2,'',''); insert test_ab(id,col_a,col_b) values(3,null,''); insert test_ab(id,col_a,col_b) values(4,null,1); mysql> select * from test_ab; +------+-------+-------+ | id | col_a | col_b | +------+-------+-------+ | 1 | 1 | 1 | | 2 | | | | 3 | NULL | | | 4 | NULL | 1 | +------+-------+-------+ 4 rows in set (0.00 sec)
mysql> select * from test_ab where col_a = ''; +------+-------+-------+ | id | col_a | col_b | +------+-------+-------+ | 2 | | | +------+-------+-------+ 1 row in set (0.00 sec) mysql> select * from test_ab where col_a is null; +------+-------+-------+ | id | col_a | col_b | +------+-------+-------+ | 3 | NULL | | | 4 | NULL | 1 | +------+-------+-------+ 2 rows in set (0.00 sec) It can be seen that the query methods for
mysql> select col_a+1 from test_ab where id = 4; +---------+ | col_a+1 | +---------+ | NULL | +---------+ 1 row in set (0.00 sec) mysql> select col_b+1 from test_ab where id = 4; +---------+ | col_b+1 | +---------+ | 2 | +---------+ 1 row in set (0.00 sec) It can be seen from this that null values cannot participate in any calculations, because null values are empty when participating in any calculations.
mysql> select count(col_a) from test_ab; +--------------+ | count(col_a) | +--------------+ | 2 | +--------------+ 1 row in set (0.00 sec) mysql> select count(col_b) from test_ab; +--------------+ | count(col_b) | +--------------+ | 4 | +--------------+ 1 row in set (0.00 sec) It can be seen from this that when counting the number. Null values are not counted as valid values. in conclusion: Therefore, when setting the default value, try not to use null as the default value. If the field is of int type, the default value is 0; if it is of varchar type, an empty string ('') would be better as the default value. Default values with null can still be indexed, but the efficiency will be affected. Of course, if you are sure that the field will not be indexed, you can set it to null. When setting a field, you can set it to not null, because the concept of not null does not conflict with the default value. When we set the default value to (''), although we avoid the null situation, it is possible that the field is directly assigned a null value, so null will still appear in the database, so it is strongly recommended to add not null to the field. Something like this: mysql> alter table test_ab modify `col_b` varchar(128) NOT NULL DEFAULT ''; Query OK, 0 rows affected (0.00 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> desc test_ab; +-------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+--------------+------+-----+---------+-------+ | id | int | YES | | NULL | | | col_a | varchar(128) | YES | | NULL | | | col_b | varchar(128) | NO | | | | +-------+--------------+------+-----+---------+-------+ 3 rows in set (0.00 sec) Although it may not be worse than the null character in terms of storage space and index performance, in order to avoid its particularity and bring uncertainty to the project, it is recommended not to use NULL as the default value. The above is the details of distinguishing between null values and empty characters ('') in MySQL. For more information about MySQL null values and empty characters, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Analysis of GTK treeview principle and usage
>>: Introduction to reactive function toRef function ref function in Vue3
Report an error The Apache\Nginx service started ...
1. Time difference functions (TIMESTAMPDIFF, DATE...
Table of contents 01-Event Bubbling 1.1- Introduc...
Let's take a look at the situation where Secu...
When using the docker-maven-plugin plug-in, Maven...
Preface Today, Prince will talk to you about the ...
Table of contents event Page Loading Event Delega...
Carousel animation can improve the appearance and...
This article describes the usage of MySQL stored ...
1. After creating the web project, you now need t...
Table of contents 1. Rendering 2. Implementation ...
Table of contents Prototype chain We can implemen...
Preface The count function is used to count the r...
vue-element-admin import component encapsulation ...
This article shares the specific code for drawing...