Which Of The Following Is A Correct Syntax For Using Between #176
Which of the following is a correct syntax for using BETWEEN 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 Between Operator - Quiz No.1.
Which of the following is a correct syntax for using BETWEEN operator?
Select column_list From table_name Where column_name BETWEEN value1, value2;
Select column_list From table_name Where column_name BETWEEN value1 AND value2;
Select column_list From table_name Where column_name BETWEEN value1 OR value2;
Select column_list From table_name Where column_name BETWEEN value1 AND value2 AND value3;