Consider The Underlying Statement And Answer The Question That #386
Consider the underlying statement and answer the question that follows –</p> <pre><code class="language-sql">CREATE table employee ( Eid varchar(10) PRIMARY KEY, Age int CHECK (Age BETWEEN 21 AND 40));</code></pre> <p>What is the range of age of the employees that can be entered in the table employee?
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 Constraints - SQL Check Constraint - Quiz No.1.
Consider the underlying statement and answer the question that follows –
CREATE table employee ( Eid varchar(10) PRIMARY KEY, Age int CHECK (Age BETWEEN 21 AND 40));
What is the range of age of the employees that can be entered in the table employee?
21 ≤ Age < 40
21 < Age ≤ 40
21 < Age < 40
21 ≤ Age ≤ 40