oracle中SQL如何把两个表中相关数据相加
3个回答
展开全部
两个表之间有关系吗?如果有:
select tb1.b+tb2.b from table1 tb1 join table2 tb2 on tb1.a = tb2.a ;
select tb1.b+tb2.b from table1 tb1 join table2 tb2 on tb1.a = tb2.a ;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select field1, field2 from table1
union select field1, field2 from table2
或
select field1, field2 from table1
union all select field1, field2 from table2
union select field1, field2 from table2
或
select field1, field2 from table1
union all select field1, field2 from table2
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询