查询包含有 ^ 字符的记录
title like '%^%' 不行
declare @t table(n varchar(10))insert into @t select '^' union allselect '123123'
select * from @t where charindex('^',n)>0/*(2 行受影响)n----------^
(1 行受影响)
*/
ACCESS库 是不是需要转异呀!? title like '%[^]%'