Fulltext for multiple word

  • Hi,

    I want to replace below query using fulltext Contain

    select * from tx_Main_Data MD

    where Column1 like '%This is for testing purpose%'

    But using full text search I am getting some extra rows which do not contain the text.

  • SELECT *

    FROM tx_Main_Data

    WHERE CONTAINS(Column1,'"This is for testing purpose"')

    Far away is close at hand in the images of elsewhere.
    Anon.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply