标题: not in 和 not exists有什么区别? [打印本页] 作者: 乔克 时间: 2011-11-24 22:48 标题: not in 和 not exists有什么区别? not in 和 not exists有什么区别?作者: 何建华 时间: 2011-11-25 08:44
举例:
id not in (1,2) (ID不为1,不为2的其他数)
not exists (select * from table where id = 1 or id = 2) (只要有一个ID不为1或不为2的数)