I have a request
select (SELECT SUM(ostatok) FROM ostatky) AS ost The result of the query is a floating point number. How to make the result displayed like this: if there is a fractional part, then it shows a number with two digits after the comma, and if there is no fractional part, then after the comma it puts two zeros. How to do it?