vote up 0 vote down star

I need to write a query in sql using full text that returns records in the order of matching words count

exmaple: in data base

row 1 = "brown cow" //1 match
row 2 = "lazy dog" //2 matches

User input: "The quick brown fox jumps over the lazy dog"

both inputs would be return with row 2 on the top

flag
Can you maybe expand on this with a table-create script, insert-data script, and the results you expect to get? I'm having trouble understanding what you're after, and judging by the other answers, other people are having some difficulty too. Thanks! – Brent Ozar Jun 13 at 1:14

3 Answers

vote up 0 vote down

I don't see anything that natively does this. You might have to create a function which compares the results to your search string in order to determine how many matches exist.

You could then pass the results of the free text search into that function which would return a match count. Finally, you'd order the results by the match count.

link|flag
vote up 0 vote down

In MS SQL, for a guerilla approach you can do something like this:

select * from MATCHTABLE where patindex('%'+MATCHCOLUMN+'%','The quick brown fox jumps over the lazy dog')>0

where MATCHTABLE is the table with your two example rows, and MATCHCOLUMN is the column name with the text.

However, performance with this approach will not be anything like fulltext searching.

link|flag
ah crap, I just re-read your question, I misunderstood. FAIL! Please don't downvote me :) Is there some reason you want to store "brown cow" as one string rather than in two rows as "brown" and "cow"? – ferocious May 12 at 20:01
it's a nvarchar field and can have many words. brown cow was just an example – decon2 May 13 at 5:59
... and this is in a table you cannot alter, or extract from and create a derivative table? – ferocious May 13 at 12:52
vote up -1 vote down

Google SQL Server Full Text Search and you will find many resources.

Here is a nice article to get you started.

link|flag
Although a nice article, it doesn't answer his question... – Chris Lively May 12 at 18:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.