The as follows: First, there is a table named business: SELECT ISNULL(business_name,'no business_name') AS bus_isnull FROM business WHERE id=2 Running it directly will give an error: Error code: 1582 Incorrect parameter count in the call to native function 'isnull' Therefore, the Use SELECT IFNULL(business_name,'no business_name') AS bus_ifnull FROM business WHERE id=2 Running results: When the queried value is not null: SELECT IFNULL(business_name,'no business_name') AS bus_ifnull FROM business WHERE id=1 The results are as follows: Use SELECT COALESCE(business_name,'no business_name') AS bus_coalesce FROM business WHERE id=2 The results are as follows: When the query value is not null: SELECT COALESCE(business_name,'no business_name') AS bus_coalesce FROM business WHERE id=1 Among them: SELECT COALESCE(business_name,district_id,id) AS bus_coalesce FROM business WHERE id=2 So, how to use SELECT * FROM business WHERE ISNULL(business_name) The results are as follows: Similarly, SELECT * FROM business WHERE business_name IS NULL The results are as follows: SELECT * FROM business WHERE business_name IS NOT NULL Summarize The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: How to use file writing to debug a Linux application
>>: Complete code for implementing the popular astronaut watch face based on JavaScript
Table of contents VARCHAR and CHAR Types Conclusi...
Table of contents Function Introduction function ...
Table of contents 1. Brief Introduction 2. Run sc...
There are two ways to disable form submission in ...
Table of contents 1. Achieve results 2. Backend i...
Table of contents When developing, analyzing the ...
1. Introduction Why do we need indexes? In genera...
A common suggestion is to create indexes for WHER...
The reason is that this type of web page originate...
Table of contents What are immutable values? Why ...
Here is a brief introduction to indexes: The purp...
Table of contents 1. BOM Introduction 1. JavaScri...
Preface MRR is the abbreviation of Multi-Range Re...
Getting Started with Data Volumes In the previous...
clear:both is used to清除浮動This is the impression I...