Which of the following SQL statements can be used to select all the records from the table "Employee" where the "LastName" is between (and including) "Tom" and "Matt" alphabetically.单项选择题
A
SELECT * FROM Employee WHERE lastName > Tom, lastName < 'Matt';
B
SELECT lastName > 'Tom' AND lastName < 'Matt' FROM Employee;
C
SELECT * FROM Employee WHERE lastName > 'Tom' AND lastName > 'Matt';
D
SELECT * FROM Employee WHERE lastName BETWEEN 'Tom' AND 'Matt';
登录即可查看完整答案
我们收录了全球超50000道真实原题与详细解析,现在登录,立即获得答案。
类似问题
The special operator used to check whether an attribute value is within a range of values is _____.
Question at position 56 The following two SQL statements will produce the same results. SELECT last_name, first_name FROM customer WHERE credit_limit >=100 AND credit_limit <= 10000; SELECT last_name, first_name FROM customer WHERE credit_limit BETWEEN 100 and 10000;TrueFalse
Question at position 51 The following two SQL statements will produce the same results. SELECT last_name, first_name FROM customer WHERE credit_limit >=100 AND credit_limit <= 10000; SELECT last_name, first_name FROM customer WHERE credit_limit BETWEEN 100 and 10000;TrueFalse
Question at position 40 The following two SQL statements will produce the same results. SELECT last_name, first_name FROM customer WHERE credit_limit >=100 AND credit_limit <= 10000; SELECT last_name, first_name FROM customer WHERE credit_limit BETWEEN 100 and 10000;TrueFalse
更多留学生实用工具
希望你的学习变得更简单
加入我们,立即解锁 海量真题 与 独家解析,让复习快人一步!