【在线等】优化一段大量UNION 的语句
现在有一批从table A提取的id号(很不规则的,是客服手工提取的),要与table B做jion,但id号太多了,有10万之多
我用以下语句进行运行,爆慢无比
select aa.id ,bb.name from
(select 1 as id union all
select 1 as id union all
...
select 10000 as id ) as aa
innet join table B as bb
on aa.id=bb.id
测试了下,主要问题出现在
select 1 as id union all
select 1 as id union all
...
select 10000 as id 这一段话上,求优化方法···
表说用in,那个更慢
[最优解释]
把union all 用临时表代替,然后join 试试,不行 就用exists
select id
into #A
from (
select 1 as id union all
select 1 as id union all
...
select 10000 as id) as a
[其他解释]
將提取到的id保存到臨時表,并建索引,再join tb_B 進行查詢.
if object_id('tempdb..#tb_Collect')is not null
drop table #tb_Collect
Go
select 1 as id Into #tb_Collect union all
select 1 as id union all
...
select 10000 as id
Create clustered index ix_#tb_Collect_id On #tb_Collect(id)
Select a.id,b.Name from #tb_Collect As a
Inner join tb_B As b On a.id=b.id
select id,name from B where B.id in(/*id们*/)