What Is The Syntax Of Isnull Function Used In Mysql #283
What is the syntax of ISNULL ( ) function used in MySQL?
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 ISNULL ( ) function used in MySQL?
Select column_list ISNULL(column_name) From table_name;
Select column_list From table_name ISNULL (column_name);
Select column_list ISNULL From table_name;
Select column_list From table_name Where ISNULL (column_name);