Answer:
INSERT INTO Employee(employeeName,employeeID,employeeEmail)
VALUES('John Anderson','XYZ1234','j.anderson@xyz');
Step-by-step explanation:
First write the statement INSERT INTO then write table name which in our case was Employee. Inside the round brackets add column names say employeeName,employeeID,employeeEmail , then write VALUES and add your values of columns you added respectively.
Make sure to write exact same column names you have in your table.