True/False
The following two SQL statements will produce different results.
SELECT last_name, first_name
FROM customer
WHERE state = 'MA' OR state = 'NY' OR state = 'NJ' OR state = 'NH' OR state = 'CT';
SELECT last_name, first_name
FROM customer
WHERE state in ('MA','NY','NJ','NH','CT');
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
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
Q67: The ORDER BY clause sorts the final
Q69: DCL is used to update the database
Q70: An INSERT command does not need to
Q71: What result will the following SQL statement
Q72: In databases, null values are equivalent to
Q73: Which of the following is true of