Collections:
NULL Values Involved in String Operations in SQL Server
What Happens If NULL Values Are Involved in String Operations in SQL Server Transact-SQL?
✍: FYIcenter.com
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 'FyiCenter'+NULL; GO ---------- NULL SELECT LEN(NULL); GO ---------- NULL SELECT REVERSE(NULL); GO ---------- NULL
⇒ NULL Values Involved in Datetime Operations in SQL Server
⇐ NULL Values Involved in Arithmetic Operations in SQL Server
2017-02-05, 2111🔥, 0💬
Popular Posts:
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
How Fixed Length Strings Are Truncated and Padded in SQL Server Transact-SQL? When the length of the...
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...