Help me in solving GSQ39 problem

My issue

PLEASE TELL ME THE SOLUTION OF THIS PROBLEM

My code

/*Solution as follows*/


SELECT ROUND(Taxable_Pay, 2)
FROM employee;

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

you just have to give the result column the alias like below,
SELECT ROUND(Taxable_Pay, 2) as ‘taxable_pay’
FROM employee;