怎么在易语言里用SQL查询语句 取得一access数据库中两个表同文本一字段的差集?
用“select号码from表1exceptselect号码from表2”这样的语句为什么没结果?...
用“select 号码 from 表1 except select 号码 from 表2” 这样的语句为什么没结果?
展开
1个回答
展开全部
试试这个:
select * from 表1 where 表1.号码 not in(select 号码 from 表2)
select * from 表1 where 表1.号码 not in(select 号码 from 表2)
追问
不行的
追答
如果你是想要表1中有但是表2没有,以及表2中有但是表1没有的集合,可以这样:
select * from 表1 where 表1.号码 not in(select 号码 from 表2) union select * from 表2 where 表2.号码 not in(select 号码 from 表1)
经测试是可以。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询