请教一个查询应该怎么联合!表A和表B做联合查询,表A有1W数据,表B有5000数据,用字段ID做连接,怎么找出表A有的,表B没有的那5000条数据?[解决办法]
--1select * from a where not exists(select * from b where .aid=b.id)--2 这个要求结构一致才行select * from aexceptselect * from b