Which Of The Following Is A Correct Syntax For In Operator #167
Which of the following is a correct syntax for IN operator?
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 Operators and Wildcards - SQL In Operator - Quiz No.1.
Which of the following is a correct syntax for IN operator?
Select column_list From table_name Where column_name IN (values);
Select column_list From table_name Where column_name IN values;
Select column_list IN (values) From table_name Where column_name;
Select column_list IN values From table_name Where column_name;