full-text search sql server 2005

前端 未结 4 1025
一个人的身影
一个人的身影 2020-12-21 21:18

I have got hold of a sql server 2008 developer edition and this is my data:

 if exists (select * from dbo.sysobjects where id = object_id(N\'test\') and OBJE         


        
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-21 21:53

    FREETEXT is less precise compared to CONTAINS

    http://www.mssqltips.com/tip.asp?tip=1382

    CONTAINS explained:

    http://msdn.microsoft.com/en-us/library/ms187787.aspx

提交回复
热议问题