求一sql语句(50分)

  • 主题发起人 主题发起人 月河
  • 开始时间 开始时间

月河

Unregistered / Unconfirmed
GUEST, unregistred user!
update 表 set 字段3=字段1/字段2<br>但字段1、字段2为整数,要求字段3结果为四位小数.....
 
update 表 set 字段3=cast(字段1/字段2 as decimal(18,4))
 
update 表 <br>set 字段3=<br>Cast(Cast(字段1 as decimal)/Cast(字段2 as decimal) as decimal(18,4) )
 
update 表 set 字段3=((字段1+0.0)/(字段2+0.0) &nbsp;as decimal(18,4))
 
update 表 set 字段3 = Cast(字段1 * 1.0 / 字段2 as numeric(18.4))<br>注意结果可能会溢出
 
update 表 set 字段3 = Cast(字段1 * 1.0 / 字段2 as numeric(18,4))<br>注意结果可能会溢出
 
update 表 set 字段3 =iff(字段2=0,0,round(字段1/字段2,4))<br>结果就不会溢出了
 

Similar threads

后退
顶部