Step1
Query :
SELECT
(ISNULL(TRY_CONVERT(NUMERIC(38, 14), '123456789.34554563453524'), 0)
*
ISNULL(try_convert(NUMERIC(38, 14), '456789876.34556345345353'), 0))/100.0
Result :
563938115391720.660302
Step2
The above query I have modified to :
SELECT (123456789.34554563453524 * 456789876.34556345345353) / 100.0
But the result is :
563938115391720.660302253145411988
Here, the Step1 query result has truncated the decimals at some point.
How to re-write it to get the exact number (563938115391720.660302253145411988) I got for Step2 query.