Rounding issue in LOG and EXP functions

后端 未结 3 1456
花落未央
花落未央 2020-12-16 21:31

I am trying to perform cumulative multiplication. I am trying two methods to do this

sample data:

DECLARE @TEST TABLE
  (
     PAR_COLUMN         


        
3条回答
  •  猫巷女王i
    2020-12-16 22:04

    LOG() and EXP() implicitly convert arguments to the float data type, which are approximate values.

提交回复
热议问题