tsql 条件数学方程
我需要在选择查询期间执行一些求和,但是根据 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 case 表达式。
You can use a case expression.