另一種選擇可能是這樣的:
Declare @Table table (col int)
Insert into @Table values
(4141243),(4290577),(98765432),(78635389),(4141243),(22222),(4290046),(55555555),(4141243),(6789),(77777),(45678),(4294461),(55555),(4141243),(5555)
Declare @Num table (Num int);Insert Into @Num values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9)
Select Distinct A.*
From @Table A
Join (
Select Patt=replicate(Num,3) from @Num
Union All
Select Patt=right('000'+cast((Num*100+Num*10+Num)+12 as varchar(5)),3) from @Num where Num<8
Union All
Select Patt=reverse(right('000'+cast((Num*100+Num*10+Num)+12 as varchar(5)),3)) from @Num where Num<8
) B on CharIndex(Patt,cast(col as varchar(25)))>0
返回
Col
5555
6789
22222
45678
55555
77777
55555555
98765432
**
想想甜酒500的組或3運行例如123或321或 333將是一個打擊。
**
,你能否告訴樣本數據和所需輸出? –
喜添, 這裏是一個小樣本,期望輸出 '4141243, 4290577, 98765432, 78635389, 4141243, 22222, 4290046, 55555555, 4141243, 6789, 77777, 45678, 4294461, 55555, 4141243, 5555' 所以從這個返回將是6789和98765432,沒有長度標準(比爲12個字符,但數量的可能的最大其他可以在1-12個字符之間) 編輯-sorry這就是有點眼睛看 – Litation