Help me in solving GSQ58 problem

My issue

My code

/* **Debug this query** to output the minimum and maximum value of payout, round to 2 decimal places. */


select Round(MIN(Payout), 2)
from employee;
select Round(MAX(Payout), 2)
from employee;




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

select rount(min(payout),2), Round(MAX(Payout),2)
from employee;

You can select both the values in a single query.