Solved

The TblTruck Table Has Two Text Fields Named Make and Model,and

Question 23

Multiple Choice

The tblTruck table has two text fields named Make and Model,and one numeric field named Year.Which of the following statements adds the record 2013 Ford F150 to the table?


A) INSERT VALUES ('Ford', 'F150', 2013) INTO tblTruck (Make, Model, Year)
B) INSERT INTO tblTruck ('Ford', 'F150', 2013) VALUES (Make, Model, Year)
C) INSERT INTO 'tblTruck' ('Make', 'Model', 'Year') VALUES ('Ford', 'F150', 2013)
D) INSERT INTO tblTruck (Make, Model, Year) VALUES ('Ford', 'F150', 2013)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions