现在有一批从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,那个更慢

解决方案 »

  1.   

    SELECT number FROM [master].dbo.spt_values sv WHERE sv.[type]='p' AND sv.number>0
      

  2.   

    把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
      

  3.   

    常量的IN
    绝对要比你的语句要快
    select id,name from B where B.id in(/*id们*/)
      

  4.   

    將提取到的id保存到臨時表,并建索引,再join tb_B 進行查詢.
    if object_id('tempdb..#tb_Collect')is not null
        drop table #tb_Collect
    Goselect 1 as id Into #tb_Collect union all
    select 1 as id union all
    ...
    select 10000 as idCreate 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
      

  5.   

    樓主可以考慮把
    elect 1 as id union all
    select 1 as id union all
    ...
    select 10000 as id寫入一個table AA中,在table AA的id字段創建一個聚集索引,再與table B關聯。
    select b.ID,b.Name From b where exists(select 1 from AA where ID=b.ID)
      

  6.   

    你那堆union 是为了创建一个序列而已吧?如果是,那尝试使用select row_number() over(order by getdate())来产生一系列的ID。