The IsNull () function used to replace and merge

Source: Internet
Author: User

ISNULL
Replaces NULL with the specified replacement value.

Grammar
ISNULL (Check_expression, Replacement_value)

Parameters
Check_expression

An expression that will be checked for null. Check_expression can be of any type.

Replacement_value

The expression that will be returned when check_expression is null. Replacement_value must have the same type as check_expresssion.

return type
returns the same type as check_expression.

Notes
If Check_expression is not NULL, the value of the expression is returned, otherwise Replacement_value is returned.

Example
A. Using ISNULL with AVG
The following example finds the average price for all books and replaces all NULL entries in the Value column of the titles table with the values $10.00.

Use pubs
GO
SELECT AVG (ISNULL (Price, $10.00))
From titles
GO

here is the result set:

--------------------------
14.24

(1 row (s) affected)

B. Using ISNULL
The following example selects the title, type, and price for all books in the titles table. If the price of a title is NULL, then the price shown in the result set is 0.00.

Use pubs
GO
SELECT SUBSTRING (title, 1,) as title, type as type,
ISNULL (Price, 0.00) AS-price
From titles
GO

C. Using IsNull in full join case
Table A:
Tid
Uid
Anum

Table B:
Tbid
Uid
Bnum1
Bnum2
all two tables need to be connected by UID:
Select A.tid,a.uid,a.anum,b.bnum1,b.bnum2 from a full join B on a.uid=b.uid
The full connection will be a lot of empty cases, you can use IsNull to solve, instead:
Select IsNull (A.tid,b.tid), IsNull (A.uid,b.uid), IsNull (a.anum,0), IsNull (B.BNUM1,

The IsNull () function used to replace and merge

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.