MSSQL全文检索 数字形式
刘卫黄 2015-08-16 10:27:27 如有表A
id int 自增列
name nvarchar(50)
phone varchar(20)
形式
其中phone的值是正规的手机号(数字形式 如13266780987)
创建完全文检索之后
select * from A where contains(*,'132') 竟然没有数据
但是select * from A where phone like '%132%'就能显示出数据
提问:原因为何?如何设置才能让select * from A where contains(*,'132')查询出数据?