My issue
My code
/* Write a query to insert the below mentioned employee details to the table 'employee' */
select * from 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');
};
Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone