Question: Review the SQL below and check all answers that are correct with respect to the SELECT statement: CREATE TABLE Customer ( customer _ id DECIMAL

Review the SQL below and check all answers that are correct with
respect to the SELECT statement:
CREATE TABLE Customer(
customer_id DECIMAL (6),
first_name VARCHAR(30),
last_name VARCHAR(30)
;
SELECT customer_id, first_name, last_name
FROM Customer
WHERE last_name IN('Smith','Jones','Salk');"
The query will never return any rows, no matter what data is in the
CUSTOMER table
The query will return no rows, because a last_name cannot be both
'Smith', 'Jones', and 'Salk'
We cannot determine how many rows the query will return
The query will return exactly 6 rows
The SELECT statement is not syntactically correct
 Review the SQL below and check all answers that are correct

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!