Question: Is the following statement true or false? The following two SQL statements will produce same results. SELECT last_name, first_name FROM customer WHERE state = 'MA'
Is the following statement true or false?
The following two SQL statements will produce same 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');
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
