1. Test Datacreate table test_null ( id int, name varchar(20), chinese int, math int, english int ) charset=utf8; insert into test_null values (1,null,80,70,68), (2,'张三',60,null,null), (3,'Li Si',null,90,80), (4,'Wang Wu',90,60,75), (5,null,null,50,95); The results are as follows: 2. The inconvenience caused by null value1) The filtering is different, you can only use is null or is not null; # Null values cannot be compared using == or != # Both of the following are incorrect select * from test_null where name == null; select * from test_null where name != null; # Null values are generally compared using is null or is not null # The following two usages are the correct choices * from test_null where name is null; select * from test_null where name is not null; 2) The presence of a null value will cause + - * / operations to fail; select *,(chinese+math+english) as total score from test_null; The results are as follows: 3) Null values have no effect on aggregate functions, and aggregate functions will directly ignore null values; select sum(chinese) total score of Chinese, sum(math) total score of mathematics, sum(english) total foreign language score from test_null The results are as follows: 3. How should we judge spaces, empty values and null?1) The difference between spaces, empty values and nullUse a vivid metaphor to illustrate the difference between these three. First of all, spaces are easy to understand. An empty string occupies a certain amount of space. What is difficult to understand is actually the empty value and null. The empty value is equivalent to a cup in a vacuum state, with nothing in it, while null means there is air in the cup. In MySQL, 2) What should I do if a null value appears?Through the above analysis, we already know that when there are null values in the table, addition, subtraction, multiplication and division operations will fail. So how do we deal with these null values? The first method: directly use is not null to filter out these null values, but this will filter out other fields with non-missing values, resulting in data waste. The second method: This is also the method we recommend. We use functions to fill in missing values. Use of ifnull() and coalesce() functions: select id, coalesce(name,'Anonymous') name, coalesce(chinese,0) chinese, ifnull(math,0) math, ifnull(english,0) english from test_null; The results are as follows: The above is the detailed content of the experience summary and analysis of MySQL series on NUll values. For more information about NUll values in MySQL, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: HTML Grammar Encyclopedia_HTML Language Grammar Encyclopedia (Must Read)
>>: Vue3 based on script setup syntax $refs usage
I collected a lot of them, but all ended in failu...
1. MYSQL installation directory Copy the code as ...
Table of contents A pitfall about fileReader File...
1. Get is used to obtain data from the server, wh...
Problem Peeping In the server, assuming that the ...
For reference only for Python developers using Ub...
When faced with a SQL statement that is not optim...
1. Application of multimedia in HTML_falsh animat...
Preface Before starting this article, let’s do a ...
Table of contents 1. Communication between father...
Preface An index is a data structure that sorts o...
Reflections on the two viewpoints of “people-orie...
HTML comments, we often need to make some HTML co...
Chatbots can save a lot of manual work and can be...
1. Official website address The official website ...