本文介绍了一起拖曳同一张桌子的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨朋友
我有两个表,两个列(代码,成本)
我想减去这张表

table1 table2
---------------- ----------------
验证码|费用代码|费用
------------- -------------
1 | 100 1 | 50
2 | 200 2 | 100
3 | 300 3 | 200
4 | 400


结果=表1-表2
----------------
验证码|费用
-------------
1 | 50
2 | 100
3 | 100
4 | 400


请指导我...

hi friends
i have tow same table with tow columns(Code , Cost)
and i wanna subtract this tables

table1 table2
---------------- ----------------
code | cost code | cost
------------- -------------
1 | 100 1 | 50
2 | 200 2 | 100
3 | 300 3 | 200
4 | 400


result = table1 - table2
----------------
code | cost
-------------
1 | 50
2 | 100
3 | 100
4 | 400


please guide me ...

推荐答案

select code, a.cost - isnull(b.cost,0) from table1 a
left join table2 b on a.code = b.code


这篇关于一起拖曳同一张桌子的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 04:44