Simply say coalesce the daily use of the function

Source: Internet
Author: User

Coalesce

The function is to return the first non-null value.

SELECT COALESCE (null,null,'A','CC') -- -- A

The principle is actually equivalent to

Case where A is isn't null then a

When a B is isn't null then B

.

.

.

else N End

Really good for simplifying code ~

--summarize below 3 points--1, can not all constants are used NULL, only the part of the errorSELECT COALESCE(NULL,NULL) --2, for the situation 1, with variable words is possible! DECLARE @A INT = NULL,        @B VARCHAR( -)= NULLSELECT COALESCE(@A,@B)-----------NULL--3, careful data type difference!! Beware of data type differences!! Beware of data type differences!! --Coalesce returns the highest type of data type in each itemSELECT COALESCE(1,'A')--OKSELECT COALESCE('A',1)--ErrorThat's the reason.

Simply say coalesce the daily use of the function

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.