我在表格中有一个列(A-COL),如下所示,A-COL有许多不同的组合,每个组合最多25个。
A-COL B-COL
018 xxx
01812 xxx
0199 xxx
019232 xxx
00452 xxx
00323 xxx
00651 xxx
019287 xxx
*121 xxx
N22321 xxx
XN43155 xxx
我需要:
我确实根据右边的数字条写了一个很多,但由于输入的数量是数百万而且查找表本身是数千个,因此性能受到了打击。
非常感谢任何优化的解决方案或建议。
答案 0 :(得分:2)
如果Acol被编入索引,这应该很快:
Select
*
From (
Select Top 1
*
From
Test
Where
Acol <= @Input
Order By
ACol Desc
) a
Where
@Input Like Acol + '%'
答案 1 :(得分:0)
我不喜欢SQL中的循环,但如果(!)A-Col有索引并且表格相当长,这可能是最有效的方式:
declare @n int
set @n = datalength(@SearchText)
while @n>0 and @aCol is null begin
select @acol = [A-Col] from table where substring(@SearchText,1,@n)=[A-Col]
set @n = @n - 1
end
select @acol
如果A-Col没有编入索引,那么这应该可以解决问题(但速度很慢):
select top 1 ACol
from table
where @Searchtext like ACol+'%'
order by DataLength(ACol) desc
注意:未经测试。
更新:我刚刚读到您很可能实施了第一种方法。
想法:比方说,你的数百万输入表被称为'输入'。要匹配的列称为“数字”。然后在列'number'上放一个索引并执行此操作
WITH cte AS (
select input.number,
lookup.ACOL,
ROW_NUMBER() OVER (
PARTITION BY input.number, lookup.ACOL
ORDER BY DataLength(lookup.ACOL)
) as rowNumber
from input
join lookup on lookup.ACOL like input.number+'%'
)
SELECT *
FROM cte
WHERE rowNumber = 1