select * from table_name where column like ' '

前端 未结 4 1923
南旧
南旧 2021-01-18 07:22

I need to find records containing html code such as \' \' But when I try to run the select * from table_name where column like \' %\' I got p

4条回答
  •  清酒与你
    2021-01-18 08:00

    Have a look at this:

    SQL Plus FAQ

    e.g.

    SET ESCAPE '\'
    SELECT '\&abc' FROM dual;
    

提交回复
热议问题