SQL Server; index on TEXT column

后端 未结 5 1487
轻奢々
轻奢々 2021-01-02 15:34

I have a database table with several columns; most of them are VARCHAR(x) type columns, and some of these columns have an index on them so that I can search qui

5条回答
  •  时光说笑
    2021-01-02 16:23

    You can do complex boolean querying in FTS; like

    contains(yourcol,'"My first sting" or "my second string" and "my third string"')

    Depending on your query ContainsTable or freetexttable might give better results.

    If you are connecting through .Net you might want to look at A google full text search

提交回复
热议问题