开发者

SQL Full Text Search Query?

开发者 https://www.devze.com 2023-04-12 14:30 出处:网络
i am trying to implement a full text search on a login table and when i am executing the respective query then following are my observations:

i am trying to implement a full text search on a login table and when i am executing the respective query then following are my observations:

When i am executing the following query implementing the full text search it is able to fetch approximate 1665 rows

select * from t_user where contains(LOGIN_ID, '"*david*" )

but when implementing the similar query without using full text search using the following it is returning 1872 rows

select * from T_USER where LOGIN_ID like '%david%'

As i browsed throw the data in my table i came to a conclusion that when i am using the contains keyword it is neglecting the row which has login id like DDAVID_D or i may say it is only returning rows which have the david words separated like DAVID_FRANK.

Is 开发者_如何学Cthere a way to search a word between the words (like searching for David in between DDavidFrank or i may searching between long continous words for the david string like in DDAVIDFRANK ) as to implement full text search effectively ?


try

WHERE FREETEXT(LOGIN_ID, 'david') OR CONTAINS(LOGIN_ID, 'david')"


Try this query :

SELECT * from t_user WHERE CONTAINS(LOGIN_ID, '"david"' )
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号