Solved

The Following Two SQL Statements Will Produce the Same Results

Question 61

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions