Multiple Choice
Laura is adding a new product to the CANDY table, which has columns for the product ID, name, description, and price. Price is a dollars and cents value; the others are strings of characters. Which SQL command should Laura use to add the row for the new product?
A) INSERT CANDY ROW (534, Cordial fudge, Dark chocolate fudge squares topped with a cherry swirl, 5.85) ;
B) INSERT VALUES ('534', 'Cordial fudge', 'Dark chocolate fudge squares topped with a cherry swirl', 5.85) INTO CANDY;
C) INSERT INTO CANDY VALUES (534, Cordial fudge, Dark chocolate fudge squares topped with a cherry swirl, 5.85) ;
D) INSERT INTO CANDY VALUES ('534', 'Cordial fudge', 'Dark chocolate fudge squares topped with a cherry swirl', 5.85) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q2: Which of the following is a valid
Q3: Why does the POSTAL_CODE column in the
Q4: It is recommended that table names be
Q5: A text file with a .sql extension
Q6: SQL was developed in the mid-_.<br>A) 1950s<br>B)
Q8: To list all the columns in a
Q9: Which data type should you use for
Q10: Should a user be allowed to enter
Q11: Which MySQL command do you use to
Q12: When creating a SQL table, _.<br>A) add