A new method of implementing string concatenation in SQL Server 2012

Source: Internet
Author: User

Before the--sqlserver 2012 version

/* Handling NOT NULL characters/*

DECLARE @t1 varchar (a) = ' a '

DECLARE @t2 varchar (+) = ' B '

DECLARE @t3 varchar (+) = ' C '

DECLARE @t4 varchar (+) = ' d '

DECLARE @N1 int = 2012

SELECT @t1 + @t2 + @t3 + @t4 +convert (varchar), @N1) as result

Go

/* Handle NULL characters/*

DECLARE @t1 varchar (a) = ' a '

DECLARE @t2 varchar (+) = ' B '

DECLARE @t3 varchar (TEN) = null

DECLARE @t4 varchar (+) = ' d '

DECLARE @N1 int = 2012

SELECT @t1 + @t2 +isnull (@t3, ') + @t4 +convert (varchar), @N1) as result

Go

If the IsNull is not used here, then the value we get will be null, quite different from what we expect.

---SQL Server 2012

SELECT CONCAT (' A ', ' B ', ' C ', ' d ', ', ') as result

Go

/* Handling NOT NULL characters/*

DECLARE @t1 varchar (a) = ' a '

DECLARE @t2 varchar (+) = ' B '

DECLARE @t3 varchar (+) = ' C '

DECLARE @t4 varchar (+) = ' d '

DECLARE @N1 int = 2012

SELECT CONCAT (@t1, @t2, @t3, @t4, @N1) as result

Go

/* Handle NULL characters/*

DECLARE @t1 varchar (a) = ' a '

DECLARE @t2 varchar (+) = ' B '

DECLARE @t3 varchar (TEN) = null

DECLARE @t4 varchar (+) = ' d '

DECLARE @N1 int = 2012

SELECT CONCAT (@t1, @t2, @t3, @t4, @N1) as result

Go

See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/database/SQLServer/

Related Article

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.