iif(数量 = 0, null, 成交金额 / 数量) AS 成交价
如果是sqlserver
(case when 数量 = 0 then null else 成交金额 / 数量 end) AS 成交价