What Is The Syntax Of Nullif Function #292
What is the syntax of NULLIF ( ) function?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Subqueries - SQL Null Functions - Quiz No.2.
What is the syntax of NULLIF ( ) function?
Select column_list From table_name Where NULLIF (exp1, exp2);
Select column_list, NULLIF (exp1, exp2) From table_name;
Select column_list, NULLIF (exp1, exp2,exp3) From table_name;
Select column_list From table_name Where NULLIF (exp1);