Hi,
This is driving me up the wall. I bet its something stupidly simple - but I'm not seeing it
...yet it gives no results. Here is an example of the values held in "Keywords" (which *is* a FULLTEXT field);
Quite a few of those should come back as results (As they have "mascot" in the keywords... yet no results are being reported (no error, just 0 rows).... any ideas?
TIA
Andy
This is driving me up the wall. I bet its something stupidly simple - but I'm not seeing it
Code:
SELECT * , MATCH (Keywords) AGAINST ('mascot') AS score
FROM glinks_Links
WHERE MATCH (Keywords) AGAINST ('mascot')
ORDER BY score
LIMIT 25
...yet it gives no results. Here is an example of the values held in "Keywords" (which *is* a FULLTEXT field);
Code:
mascot design logo heart swords
horse horses vector vinyl-ready prance
mascot design logo cardinal
horse horses vector vinyl-ready head
mascot design logo flower of life
horse horses vector vinyl-ready prance
mascot design logo seal crest
horse horses vector vinyl-ready running
horse horses vector vinyl-ready sitting
mascot design logo hawk
Quite a few of those should come back as results (As they have "mascot" in the keywords... yet no results are being reported (no error, just 0 rows).... any ideas?
TIA
Andy