Help me in solving GSQ10 problem

My issue

My code

/* Write a query which does the following
- Add a new column 'Hourly_Pay' to the table employee and set the value as 100 by default.
- Output the entire table
*/

ALTER TABLE employee
ADD COLUMN Hourly_Pay INT default 100;

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