Help me in solving GSQ05 problem

My issue

My code

/* Write a query to insert the below mentioned employee details to the table 'employee' */

INSERT INTO employee('4','Marcus_Garcia','Product'
)

Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone

@mdilyas27
/* Write a query to insert the below mentioned employee details to the table ‘employee’ */

INSERT INTO employee(Employee_id,Employee_Name,Department)
VALUES (4,‘Marcus Garcia’,‘Product’);
INSERT INTO employee(Employee_id,Employee_Name,Department)
VALUES (5,‘Samantha Park’,‘Hr’);

This is the correct way to insert the values.

1 Like