SELECT @charges=ISNULL(MAX(a.maxcharge), 0.00) FROM(
        SELECT (SELECT MAX(maxcharge)
        FROM(VALUES(ilongcharge),(iwidthcharge),(iheightcharge),(iweightcharge ),(ivolumecharge))
        AS maxcharge(maxcharge))AS maxcharge
        FROM @temp) a

 

相关文章:

  • 2022-12-23
  • 2022-01-18
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-24
  • 2021-07-25
  • 2021-07-31
  • 2021-08-13
  • 2021-12-02
  • 2022-02-25
相关资源
相似解决方案