How do you implement a fulltext search over multiple columns in sql server?

后端 未结 1 1659
自闭症患者
自闭症患者 2021-01-12 08:54

I am trying to implement a fulltext search on two columns which I created a view for: VendorName, ProductName. I have the full text index etc working but the actual query is

相关标签:
1条回答
  • 2021-01-12 09:10

    In earlier versions of SQL Server, the queries matched across multiple columns.

    However, this was considered a bug.

    To match across multiple columns, you should concatenate them in a computed column and create an index over that column.

    0 讨论(0)
提交回复
热议问题