Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

2016 what are the three ways and efficiency problems of fuzzy matching?

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

Today, I will talk to you about the three ways and efficiency of 2016 fuzzy matching, which may not be well understood by many people. in order to make you understand better, the editor has summarized the following contents for you. I hope you can get something from this article.

An example is given to describe the three ways and efficiency of SqlServer2016 fuzzy matching. The details are as follows:

The database is Sqlserver version 2016

Now the business requirements are: to query the following enterprise names, XXX,XXXX, and so on:

The first way: like'% XXX%' OR like'% XXXX%'

Select cName from tAccountAuditing wherecNamelike'% Test moa000154%'ORcNamelike'% Shanghai Division of Test Group% 'and activeAuditingCodeFromJdjr = 1

The second method: PATINDEX ('% XXX%',cName) > 0

Select cName from tAccountAuditing where (PATINDEX ('% Test moa000154%',cName) > 0ORPATINDEX ('% Test Group Shanghai Division%', cName) > 0) and activeAuditingCodeFromJdjr = 1

The third way: CHATINDEX ('XXX',cName) > 0. Don't use the percent sign here.

Select cName from tAccountAuditing where (CHARINDEX ('Test moa000154',cName) > 0ORCHARINDEX (' Test Group Shanghai Division', cName) > 0) and activeAuditingCodeFromJdjr = 1

In terms of efficiency, the latter two are better than like.

After reading the above, do you have any further understanding of the three ways and efficiency of 2016 fuzzy matching? If you want to know more knowledge or related content, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report