0

简化方案,我有一个包含以下字段/值的表:

ID  value
1   '12345'
2   '1234'
3   '123'
4   '12'
5   '1'

我想找到最接近 A='1230' 的记录,它应该对应于 ID=3。

我现在想到的唯一实现是基本的......使用循环遍历 A 子字符串并进行比较。有没有更好的方法来解决这个问题?

将感谢您的帮助

4

2 回答 2

1

尝试这个 :-

Declare @valueToSearch int
Set @valueToSearch =1230

;WITH cte
AS
(
  SELECT ID,RANK() OVER(ORDER BY ABS(value-@valueToSearch)) AS num FROM Sample
)
SELECT   ID FROM cte
WHERE num=(SELECT MIN(num) FROM cte

这将给出 2 作为结果

Sql 小提琴

于 2012-08-30T08:11:03.157 回答
0
declare @q varchar(5)
select @q = '1230'

select top 1 number, substring(source.value, 1, number)
from master.dbo.spt_values, source
where type='p'
and number<=len(source.value)
and substring(source.value, 1, number) = substring(@q, 1, number)
order by number desc

或使用类似...

select top 1 * from @source s
where @q like value +'%'
order by len(value) desc
于 2012-08-30T08:08:30.303 回答