整数演算、dimal.cnt を 10 進数または数値にキャストするか、次を実行します
/(dimall.cnt* 1.00)* (dimall.cnt * 1.00)
プレ>実際に何が起こるかを説明する別の例
select 3/2 -- output = 1, integer math, result is an integer select 3/2.00 -- output = 1.50
プレ>
整数演算、dimal.cnt を 10 進数または数値にキャストするか、次を実行します
/(dimall.cnt* 1.00)* (dimall.cnt * 1.00)
プレ>実際に何が起こるかを説明する別の例
select 3/2 -- output = 1, integer math, result is an integer select 3/2.00 -- output = 1.50
プレ>