My issue
My code
/* The Query written in the console is trying to insert data to the table employee.
Debug this query to output the entire table */
INSERT INTO employee (Id, Name, Age, Address)
VALUES (1, 'John Smith', 25, '123 Main');
INSERT INTO employee (Id, Name, Age, Address)
VALUES (2, 'Sarah Johnson', 30, '456B roadway');
SELECT * FROM employee;
Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone