My issue
My code
/* Write a query to round the **Taxable_Pay** to 2 decimal place from the table employee. */
SELECT ROUND(taxable_Pay, 2)
FROM employee;
Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone
/* Write a query to round the **Taxable_Pay** to 2 decimal place from the table employee. */
SELECT ROUND(taxable_Pay, 2)
FROM employee;
Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone