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
Q56: When the SELECT clause in the create
Q57: What is a materialized view, and when
Q58: The first part of an SQL query
Q59: What does the following SQL statement do?<br>SELECT
Q60: The last part of an SQL query
Q62: Requiring a CustomerID to exist in a
Q63: The SQL command _ adds one or
Q64: _ is a set of commands used
Q65: What are some of the standard SQL
Q66: How is the HAVING clause different from