sqlservernotexists用法【点击查看详情】
sqlservernotexists用法:选择存在于tA表中,但其中name不同于tB表中的数据 select id, name, gender, classId from tA where not exists (select name from tB where tA.name=tB.name) not in 的写法,同样的效果,但是在大数据量的时候 效率不高 select
相关视频/文章