What Is The Basic And Syntax #51
What is the basic AND syntax?
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 Clause, Operators and Keywords - SQL And, Or, Not - Quiz No.1.
What is the basic AND syntax?
Select * from table_name where condition1 && condition2;
Select * from table_name where condition1 & condition2;
Select *from table_name where condition1 AND condition2;
Select *from table_name where condition1 AND & condition2;