Given the table STUDENT(StudentID, Name, Advisor), which of the following SQL statements would be used to add new student data to the STUDENT table?
Question 10 options:
a. INSERT DATA STUDENT SET StudentID=123, Name='Jones', Advisor='Smith';
b. INSERT INTO STUDENT VALUES (123, 'Jones', 'Smith');
c. INSERT INTO STUDENT (New Student Data) VALUES (123, 'Jones', 'Smith');
d. INPUT DATA STUDENT SET StudentID=123, Name=' Jones', Advisor='Smith';
e. INPUT INTO STUDENT (123, 'Jones', 'Smith');