Consider The Following Queryp Pre Langsql Cssfilehk1style #177
Consider the following query:</p> <pre><code class="language-sql"> SELECT column_list From table_name WHERE column_name BETWEEN max_value AND min_value; </code></pre> <p>This query returns which of the following records?
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.
Consider the following query:
SELECT column_list From table_name WHERE column_name BETWEEN max_value AND min_value;
This query returns which of the following records?
No records
Those records whose column_name values are >=min_value and <=max_value
Those records whose column_name values are >min_value and <max_value
Those records whose column_name values are >=min_value or <=max_value