I feel like I'm missing something very obvious here, but I have a query where I need the result to be to 16 bits of precision after the decimal.
Below is an example query.
select (CONVERT(decimal(38,16), 467897.78) * 12) / CONVERT(decimal(38,16), 8143372.15)
If I run that query from SSMS, the result is 0.689489
, however, if I run that exact same math problem from just the windows calculator app, the result it shows is 0.6894899627054337
. Am I missing something with my tsql query?