What Is The Basic Syntax Of Exists Operator In Sql #253
What is the basic syntax of EXISTS 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 Exists - Quiz No.1.
What is the basic syntax of EXISTS operator in SQL?
Select column_list From table_name Where column EXISTS (subquery);
Select column_list From table_name Where EXISTS (subquery);
Select column_list From table_name Where table_name EXISTS (subquery);
Select column_list From table_name column EXISTS (subquery);