True/False
The following two SQL statements will produce the same results.
Select last_name, first_name
from customer
where credit_limit > 99 and credit_limit < 10001;
Select last_name, first_name
from customer
where credit_limit between 100 and 10000;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: Any create command may be reversed by
Q20: What three clauses are contained in most
Q26: The WHERE clause is always processed before
Q56: When the SELECT clause in the create
Q57: What is a materialized view, and when
Q62: What will be returned when the following
Q89: Which of the following is a technique
Q90: Which of the following can produce scalar
Q94: The asterisk (*) wildcard designator can be
Q101: A major benefit of SQL as a