ISNULL vs COALESCE | ISNULL vs IS NULL | NULLIF vs IIF | ISNULL vs IFNULL vs NVL | COALESCE vs CASE
ISNULL vs COALESCE | ISNULL vs IS NULL | NULLIF vs IIF | ISNULL vs IFNULL vs NVL | COALESCE vs CASE
Agenda:
-------------
Q01. What is the difference between ISNULL() and COALESCE()?
Q02. What is the difference between ISNULL() and IS NULL?
Q03. What is the difference between ISNULL() and NULLIF()?
Q04. What is the difference between NULLIF() and IIF()?
Q05. How ISNULL() differs from NVL() and IFNULL()?
Q06. What is the difference between COALESCE() and CASE?
Q07. Can you use COALESCE() in place of ISNULL()?
Q08. Can you use user-defined type in ISNULL() or COALESCE()?
Q09. Can you use mixed types in ISNULL() and COALESCE()?
Q10. Does input order matters in COALESCE() and ISNULL()?
Q11. Can a COALESCE() expression return the NULL value?
Q12. Can a ISNULL() function returns NULL value?
Q13. What is the use of the dm_exec_describe_first_result_set command?
ISNULL(): The SQL IFNULL() function lets you return an alternative value if an expression is NULL.
31 view
1408
436
3 years ago 00:57:07 1
SQL NULL Value | Consequence of NULL values in SQL | NULL vs ISNULL vs IS NULL vs COALESCE
4 years ago 01:36:44 13
PRIMARY KEY vs UNIQUE KEY vs FOREIGN KEY - Part 3 | FOREIGN KEY CONSTRAINT | SELF REFERENCE KEY
4 years ago 01:18:16 31
ISNULL vs COALESCE | ISNULL vs IS NULL | NULLIF vs IIF | ISNULL vs IFNULL vs NVL | COALESCE vs CASE
5 years ago 00:03:52 27
Check if Collection is Empty: isset(), empty() or !$collection?