您的位置:首页 > 数据库 > Oracle

oracle查询两个表相同字段的区别

2016-08-26 10:43 771 查看
select t1.tac from
(select tac from uadpt_tac
minus
select tac from uadpt_tac_act_data) t1
union
select t2.tac from
(select tac from uadpt_tac_act_data
minus
select tac from uadpt_tac) t2;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: