full-text search sql server 2005
问题 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 OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table test create table test ( Id INT IDENTITY NOT NULL primary key, data NVARCHAR(255) not null ) insert into test (data) values ('Hello world'); insert into test (data) values ('Hello j-world'); I would like to find all rows which contain j-world whilst avoiding LIKE for efficiency reasons. If I try