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