I have a table with a decimal column with a lenght = 9 and decimals = 2.
If I put a value of 21.59
(for example) it works ok.
If I put 52.00
it writes only 52
. I need to keep 52.00
instead.
Master question: Can the database store the value this way? Instead of using format/cast in select to retrieve the value...
As noted bellow, this make sense:
"You shouldn't worry about display formatting issues at the database level but at the ... display level"