sql分享 全文索引 
create   table   testIndex 

          id   int   identity(1,1)   primary   key, 
          nm   varchar(100)   unique   not   null, 
          sex   varchar(10) 

create UNIQUE index UQ__testIndex__0DAF0CB0
on testindex(nm)

insert   into   testindex   
          select   'aaabbb','m'   union   all 
          select   'bbb','w'   union   all 
          select   'ccc','w'   union   all 
          select   'ddd','m' 


insert   into   testindex