Given a table named store with 5 fields: store_id, address, city, state, zipcode
ID: 3576927 • Letter: G
Question
Given a table named store with 5 fields: store_id, address, city, state, zipcode, why would the following insert command not work?
insert into store values ('234 Park Street')
I think it might be C. Please explain you answer!
Insert into should be INSERT to.
There is no table keyword.
You must specify the fields to insert if you are only inserting some of the fields.
It would work just fine.
A.Insert into should be INSERT to.
B.There is no table keyword.
C.You must specify the fields to insert if you are only inserting some of the fields.
D.It would work just fine.
Explanation / Answer
You must specify the fields to insert if you are only inserting some of the fields. This is the correct ans for it
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.