Help me in solving GSQ14 problem , error: no such table found

My issue

My code

/* Write a query which does the following
- Delete the row where the department is Client.
- Output the entire table.
*/
Delete employee where department='Client';
select * from employee;

Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone