In the example below the result of the query instead of returning 7 is returned 5 .
DECLARE @valor money = 10.6879
SELECT LEN(@Valor)
The impression I get is that when the number is of type money
, only 2 decimal places are considered.
What function would I use to return the exact number of characters of a money number?