SQL Server string addition is NULL

Source: Internet
Author: User

SQL Server TSQL in the case of string concatenation, it is necessary to initialize the string,

Set @errorMsg + = N ' table role has no key ' + '. ' If the @errormsg is not assigned an initial value, the Select @errorMgs will always get null;
Declare @errorMsg nvarchar( -);Declare @tmpErrorMsg nvarchar( -);Declare @pkCount int;Declare @PKTable Table(Table_qualifiervarchar( -), Table_ownervarchar( -), table_namevarchar( -), column_namevarchar( -), Key_seqint, Pk_namevarchar( -));--in the case of string concatenation, it is necessary to initialize the stringSet @errorMsg =N"';Insert  into @PKTable EXECSp_pkeys@table_name='role';Set @pkCount=(Select COUNT(*) from @PKTable);if(@pkCount <= 0)begin    Set @errorMsg +=N'table role does not have a key'+'.'; EndDelete  from @PKTable;

SQL Server string addition is NULL

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.