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
Q11: The ALTER TABLE command is used to
Q26: The WHERE clause is always processed before
Q42: What steps should be followed when preparing
Q44: Discuss when to use the GROUP BY
Q77: The ORDER BY clause is the first
Q79: The DROP command deletes rows from a
Q79: Given a table named store with 5
Q80: Count(*) tallies only those rows that contain
Q90: Which of the following can produce scalar
Q93: If multiple Boolean operators are used in