Which of the following will insert a record into a table named employee with empid and empname as columns?
- INSERT INTO EMPLOYEE VALUES ( 101,’Joe’);
- INSERT EMPLOYEE VALUES ( 101,’Joe’);
- INSERT FROM EMPLOYEE VALUES ( 101,’Joe’);
- INSERT EMPLOYEE ( 101,’Joe’);
Please login or Register to submit your answer