要选出a表(有个字段borrowid)中的记录,但是b表(b表跟a表关联,也有一个字段borrowid)中有的记录在a表中选出的记录中就不出现。sql 怎么写?
select a.* from a where borrowid not exists (select borrowid from b)
not exists效率可能会稍微高些, 楼楼如果还有问题就继续追问, 没有问题的话就采纳吧 - -
select * from a where borrowid not in (select borrowid from b)