题目
题目
单项选择题

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

选项
A.True
B.False
查看解析

查看解析

标准答案
Please login to view
思路分析
Consider how the two WHERE clauses filter rows in SQL. Option 1 uses explicit comparison: credit_limit >= 100 AND credit_limit <= 10000. This means any row with credit_limit 100 or more, and 10000 or less, will be included. Option 2 uses the BETWEEN oper......Login to view full explanation

登录即可查看完整答案

我们收录了全球超50000道考试原题与详细解析,现在登录,立即获得答案。

更多留学生实用工具

加入我们,立即解锁 海量真题独家解析,让复习快人一步!