实现按关健字模糊查询,并按匹配度排序的SQL语句

复制代码 代码如下:

if object_id(‘tb’)is not null drop table tb

go

create table tb (id int identity(1,1),value nvarchar(100))

insert tb select n’中国’

union all select n’中国人’

union all select n’中国人民’

union all select n’日本’

union all select n’日本人’

union all select n’我的心中有人姑娘’

union all select n’人民网’

union all select n’中国是个伟大的国家’

union all select n’我们都是中国人,都是炎黄子孙,都是龙人传人’

if object_id(‘fn_splitstringtorows’)is not null drop function fn_splitstringtorows

go

create function fn_splitstringtorows

(

@str nvarchar(100)

)

returns @t table(v nvarchar(2))

as

begin

declare @i int

set @i=1

while @i<=len(@str)

begin

insert @t select substring(@str,@i,1)

set @i=@i+1

end

return

end

go

select * from dbo.fn_splitstringtorows(n’中国人’)

declare @searchstr nvarchar(20)

set @searchstr=n’中国人’

select id,[value] from tb a

inner join fn_splitstringtorows(@searchstr) b

on charindex(b.v,a.value)>0

where value like n’%[中国人]%’

group by id,value

order by count(distinct v) desc

drop table tb

/*

v

—-





(3 個資料列受到影響)

id value

———– —————————————————————————————————-

2 中国人

3 中国人民

9 我们都是中国人,都是炎黄子孙,都是龙人传人

6 我的心中有人姑娘

1 中国

8 中国是个伟大的国家

5 日本人

7 人民网

(8 個資料列受到影響)

*/

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐