I have a expression : Select (2345789 * 39.456)/100
The output is 925554.5078400.
I would like to display 925554.50 i.e. 2 values after decimal.
If I use round ( Select round((2345789 * 39.456)/100 ,1) ), the outout is
925554.5000000. But I want exactly 2 digits after the decimal.
How to do that?