I want to add a finite number '0' to the number when I execute a Select query:
i want to choose
344.89 as 344.890
123213.45 as 123213.450
1.2 as 1.200
I tried using to_char(col_name,'000000.000') , but this led to the fact that
344.89 => 000344.890
123213.45 => 123213.450
1.2 => 000001.200
added to the result is "0".
source share