Home >Database >Mysql Tutorial >mysql关于in/not in 查询轮换

mysql关于in/not in 查询轮换

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 16:27:16873browse

mysql关于in/not in 查询替换 在sql 中 采用not in 或者in的话 一般效率都很低并且很慢 一般都采用别的方式替换 一种是用 not in exits(单词忘怎么写了) 一种是用左连接查询 今天我用的是左连接查询解决我的问题 如下 select a.name ,a.userid from uts_group

mysql关于in/not in 查询替换
   在sql 中 采用not in 或者in的话 一般效率都很低并且很慢

一般都采用别的方式替换 一种是用 not in exits(单词忘怎么写了)

一种是用左连接查询 今天我用的是左连接查询解决我的问题

如下

select a.name ,a.userid from uts_group a left join
(select  DISTINCT serialNumber as s from logmessage  where serialNumber '' and operate='登录' and reserve3='uts/sso'
and operationTime>='2011-11-25 15:16:44' and operationTimeon a.userid=b.s   where  a.type='idsperson' and b.s is null

把not in(select * from table)看做是另一张表 如上面()中的

把 左边表和右边表的相关联的条件连接起来  最后加上 is null

有点啰嗦 心里明白 写不出来 有看不懂的 可以留言 mysql关于in/not in 查询轮换
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn