My issue
plz send the solution of this problem
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 new record into the employee table
INSERT INTO employee (Id, Name, Age, Address) VALUES (1, 'John Doe', 30, '1234 Elm St');
-- Output the entire table
SELECT * FROM employee;
Learning course: Database management systems
Problem Link: Debug this query in Database management systems