Reputation: 129
I have this SQL script below:
select round (72.396, 2)
What I expect like result is: 72.39.
I don't want to round the number.
if I use the select round(72.396, 2)
the result I get is: 72,40
How can I have what I expect without rounding using Mysql?
Upvotes: 0
Views: 2052