MS SQL Server Concepts and Programming Question:
Download Job Interview Questions and Answers PDF
What Happens If NULL Values Are Involved in String Operations?
Answer:
If NULL values are involved in string operations, the result will be string NULL values. The following tutorial script shows you some good examples:
SELECT 'GlobalGuideLine'+NULL;
GO
----------
NULL
SELECT LEN(NULL);
GO
----------
NULL
SELECT REVERSE(NULL);
GO
----------
NULL
SELECT 'GlobalGuideLine'+NULL;
GO
----------
NULL
SELECT LEN(NULL);
GO
----------
NULL
SELECT REVERSE(NULL);
GO
----------
NULL
Download MS SQL Server Interview Questions And Answers
PDF
Previous Question | Next Question |
What Happens If NULL Values Are Involved in Arithmetic Operations? | What Happens If NULL Values Are Involved in Datetime Operations? |