Mysql query problem....
        Posted  
        
            by Avinash
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Avinash
        
        
        
        Published on 2010-05-15T08:24:51Z
        Indexed on 
            2010/05/15
            8:34 UTC
        
        
        Read the original article
        Hit count: 510
        
I have below values in my database.
- been Lorem Ipsum and scrambled ever
- scrambledtexttextofandtooktooktypetexthastheunknownspecimenstandardsincetypesett
Here is my query:
SELECT
  nBusinessAdID,
  MATCH (`sHeadline`) AGAINST ("text" IN BOOLEAN MODE) AS score 
FROM wiki_businessads
WHERE MATCH (`sHeadline`) AGAINST ("text" IN BOOLEAN MODE)
  AND bDeleted ="0" AND nAdStatus ="1"
ORDER BY score DESC, bPrimeListing DESC, dDateCreated DESC
It's not fetching first result, why? It should fetch first result because its contain text word in it. I have disabled the stopword filtering.
This one is also not working
SELECT
  nBusinessAdID,
  MATCH (`sHeadline`) AGAINST ('"text"' IN BOOLEAN MODE) AS score 
FROM wiki_businessads
WHERE MATCH (`sHeadline`) AGAINST ('"text"' IN BOOLEAN MODE)
  AND bDeleted ="0" AND nAdStatus ="1"
ORDER BY score DESC, bPrimeListing DESC, dDateCreated DESC
Thanks
Avinash
© Stack Overflow or respective owner