(Choose 1 answer)
What is the correct syntax for inserting data into a table named Members?
A. INSERT INTO MEMBERS (MEMBER_ID. LASTNAME, FIRSTNAME, OCCUPATION)
VALUES ('1432', 'Smith', 'Charles")
B. INSERT INTO MEMBERS (MEMBER_ID. LASTNAME, FIRSTNAME)VALUES ('1432', 'Smith', 'Charles")
C. INSERT MEMBERS
(MEMBER_ID. LASTNAME, FIRSTNAME)VALUES ('1432', 'Smith', 'Charles')
D. INSERT INTO MEMBERS
(MEMBER_ID, LASTNAME, FIRSTNAME)VALUES (MEMBER_ID is 345DT2000, LASTNAME is Smith, FIRSTNAME is Charles)
E46