Does the SQL Server decimal
data type stored the actual number of digits after the decimal for each value in a column?
For example
UPDATE [Mixes] SET [Concentration] = 0.0012500 WHERE [Id] = 1
where
Concentration Decimal(21,11)
Is it possible to retrieve the exact "0.0012500" value as entered by the user, or is it necessary to store the actual number of decimal places entered in another column?