当前位置: 代码迷 >> Sql Server >> 请大神帮忙写个sql话语
  详细解决方案

请大神帮忙写个sql话语

热度:46   发布时间:2016-04-24 20:53:37.0
请大神帮忙写个sql语句
大概有10万条数据。查出id=1或者id=2或者......

我写的是 select * from A where id in (1,2,......)

这样貌似很慢,朋友说用EXISTS 

应该怎么写啊?
请大神帮忙写个sql语句

------解决方案--------------------
就看你的 in (1,2,......)这个数据是什么来的?
如果是在一个table 里面
select *
from ta a
where exists(select 1 from tb b where a.id=b.id)

如果是个字符串
select * 
from tb 
where charindex(','+cast(id as varchar)+',',',1,2,3,4,5,...')>0


------解决方案--------------------
先确认条件字段有索引
再把条件写入一个临时表,如#t

然后:
select * from A where exists(select 1 from #t where a.id=临时表字段名)

或:
select a.*
from A 
  join #t b 
    on a.ID=b.临时表字段名
  相关解决方案