SQL问题,A,B两张表,都有ID这一列,如何提取两张表的这一列中不相同的值,求指导
展开全部
select ID from A left join B on A.id=B.id where B.id is null
union all
select ID from B left join A on A.id=B.id where A.id is null
union all
select ID from B left join A on A.id=B.id where A.id is null
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-01-16
展开全部
select * from a ,b where a.id<>b,id
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询