My issue
I write code correct but i dont know why this code is comes like runtime error and it error comes Employee and open paranthesis (
My code
/* Write a query to add the below mentioned employee details to the EMPLOYEE table.
Employee id: 06, Employee Name: Brandon Kim, Department: Operations
*/
create table Employee(Employee_id int,employee_name varchar(30),department varchar(30));
insert Employee details
(1,'kayla thompson','sales'),
(2,'ethan chen','operations'),
(3,'julia lee','hr');
select *from Employee ;
Learning course: Learn SQL
Problem Link: Practice Problem in - CodeChef