Solved

Contents of the PROMOTION Table​

Question 59

Multiple Choice

Contents of the PROMOTION table​
Contents of the PROMOTION table​    ​ -Which of the following SQL statements will insert a new row into the PROMOTION table?​ A)  ​INSERT INTO promotion (gift,minretail,maxretail)  VALUES (FREE BOOK,75.01,89.99) ; B)  ​INSERT INTO promotion (gift,minretail,maxretail)  VALUES ('FREE BOOK',75.01,89.99) ; C)  ​INSERT INTO promotion VALUES (FREE BOOK,75.01,89.99) ; D)  ​both a and c
-Which of the following SQL statements will insert a new row into the PROMOTION table?​


A) ​INSERT INTO promotion (gift,minretail,maxretail)
VALUES (FREE BOOK,75.01,89.99) ;
B) ​INSERT INTO promotion (gift,minretail,maxretail)
VALUES ('FREE BOOK',75.01,89.99) ;
C) ​INSERT INTO promotion VALUES (FREE BOOK,75.01,89.99) ;
D) ​both a and c

Correct Answer:

verifed

Verified

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

Related Questions