日期:2014-05-17 浏览次数:20509 次
declare @t table(n varchar(10)) insert into @t select '^' union all select '123123' select * from @t where charindex('^',n)>0 /* (2 行受影响) n ---------- ^ (1 行受影响) */
------解决方案--------------------
ACCESS库 是不是需要转异呀!?
------解决方案--------------------
改成
title like '%[^]%'