SQL( ACCESS) 如何比较两表数据不同~高手请进!
如:A表
111
222
333
444
B表
111
222
333
我想以A表为基准和B表计较,输出B表中没有的数据
结果应该是 444
不知道SQL查询语句改怎么写? 请高手指教!谢谢! select * from A
where id not int (select * from B)
这样试试。 select a.* from a where a.xm not in (select b.xm from b) select * from A
where id not int (select * from B)
页:
[1]