tsql 条件数学方程

发布于 2024-11-28 14:30:07 字数 274 浏览 0 评论 0原文

我需要在选择查询期间执行一些求和,但是根据 2 个值,我将需要执行不同的方程。希望一个例子

基本上可以证明我需要执行以下求和

if x > y then (x - y + z) or
if x < y then (x - x + z) basically i am setting this to 0.

到目前为止我认为我可以使用 2 个表来转储 x > y 值且 x < y 值,然后执行相关方程。

任何想法

I need to perform some summations during a select query however depending on 2 values i will need to perform a different equation. hopefully an example will demonstrate

basically i need to perform the following summations

if x > y then (x - y + z) or
if x < y then (x - x + z) basically i am setting this to 0.

So far i thought that i could use 2 tables to dump the x > y values and the x < y values and then perform the relevant equations.

any ideas

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦在夏天 2024-12-05 14:30:07

您可以使用 case 表达式。

select case 
         when x > y then x - y + z
         when x < y then x - x + z
         else 0 -- x = y
       end  
from YourTable

You can use a case expression.

select case 
         when x > y then x - y + z
         when x < y then x - x + z
         else 0 -- x = y
       end  
from YourTable
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文