vote up 0 vote down star

Hi I have 2 following 2 queries:

SELECT FT_TBL.JobId, FT_TBL.Title, FT_TBL.[Description], 
     FT_TBL.Location, KEY_TBL.RANK FROM Jobs AS FT_TBL 
INNER JOIN FREETEXTTABLE (Jobs, (Title, [Description], Location), 
    'asp.net software')
    AS KEY_TBL on FT_TBL.JobId = KEY_TBL.[KEY]
WHERE CONTAINS (Location, '"luton*"')
order by KEY_TBL.RANK desc;

and

SELECT FT_TBL.JobId, FT_TBL.Title, FT_TBL.[Description], 
    FT_TBL.Location, KEY_TBL.RANK FROM Jobs AS FT_TBL 
INNER JOIN FREETEXTTABLE (Jobs, (Title, [Description], Location), 
    'asp.net software', 100)
    AS KEY_TBL on FT_TBL.JobId = KEY_TBL.[KEY]
WHERE CONTAINS (Location, '"luton*"')
order by KEY_TBL.RANK desc;

The only difference is the second one has a top_n_by_rank parameter set to 100, the first one returns 1000+ results, I thought the second one would return 100, but it returns 0 results, why is this? How should I change the top_n_by_rank parameter to make sure I get only the best results?

flag

54% accept rate
Those entries that are returned in the first query, do they have a Rank > 0? – Simon Svensson Nov 7 at 17:30

1 Answer

vote up 0 vote down check

The top 100 results probably don't match "luton*, and get filtered away by your WHERE clause.

link|flag
They thing is they do :( half of all location fields contain luton in my table, the rest contain london. – David Nov 7 at 17:28
I realised that the top_n_by_rank parameter simply adds further algorithmic logic to the return result to filter only the best of best matches depending on the number specified, therefore I left this out, simply ordered by rank descending and selected the top 150 max of my results to prevent strains on resources. Job done. – David Nov 7 at 17:29

Your Answer

Get an OpenID
or

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