What Is The Correct Syntax For Using All Operator In Sql #261
What is the correct syntax for using ALL operator in SQL?
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 Questions on Data Retrieval Techniques - SQL Any & All - Quiz No.1.
What is the correct syntax for using ALL operator in SQL?
Select column_list From table_name Where column_name ALL (subquery); Select column_list From table_name Where column_name comparison_opearator ALL (subquery); Select column_list From table_name Where column_name NOT ALL (subquery); Select column_list From table_name Where column_name ALL subquery;