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
customerid DECIMAL
firstname VARCHAR
lastname VARCHAR
;
SELECT customerid firstname, lastname
FROM Customer
WHERE lastname INSmith'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 lastname cannot be both
'Smith', 'Jones', and 'Salk'
We cannot determine how many rows the query will return
The query will return exactly rows
The SELECT statement is not syntactically correct
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
