What Is The Syntax Of Coalesce Function #289
What is the syntax of COALESCE ( ) 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 COALESCE ( ) function?
Select column_list, COALESCE(expressions_list) From table_name;
Select column_list From table_name Where COALESCE (expressions_list);
Select column_list, COALESCE(expressions_list, replace_value) From table_name;
Select column_list From table_name Where COALESCE (expressions_list);