Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started