Hi experts,
Here I have a PL/SQL stored procedures for sending an email. The content would be from a particular table.
I have some problems with the number display. For a number field, I wanna show my number in 1 decimal.
If the value is not 0 , it works fine. However if the value there is 0, it won't work and my number will show as .0 instead of 0.0 . Is there anything wrong with my script?
to_char(to_number(v_carte_
value), '999.9')
Start Free Trial