用fld like '%\%%'escape'\'准可以

解决方案 »

  1.   

    where name like '%\%%' escape '\'
      

  2.   

    都不能执行,语法错误,解释解释  escape 什么意思?
      

  3.   

    [Q]怎么样查询特殊字符,如通配符%与_
    [A]select * from table where name like 'A_%' escape ''
      

  4.   

    Q:怎样模糊查询 记录中带的%数据,例如 where name like '%(通配符%)%'
      

  5.   

    报错:
    escape charter must be character string of lenth 1
      

  6.   

    如果我这样写,还是查不出数据
    select t.*, t.rowid from msa_info t where display_name like '%[]%%' escape'[]'
    不信大家可以试试。
      

  7.   

    用INSTR函数吧
    where  instr(name, '(通配符%)', 1,1)>0
      

  8.   

    select '''' from dual  结果为 ’其他的  你再看看吧  pn在线 http://www.pnonline.com.cn