What Is The Syntax Of Ifnull Function #286
What is the syntax of IFNULL ( ) 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.1.
What is the syntax of IFNULL ( ) function?
Select column_list From table_name Where IFNULL (column_name, value_to_replace);
Select column_list, IFNULL(column_name, value_to_replace) From table_name;
Select column_list IFNULL(value_to_replace) From table_name;
Select column_list From table_name Where IFNULL (value_to_replace);