select * from table_name where column like ' '

前端 未结 4 2068
南旧
南旧 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:01

    The backslash should work, but I think you need to start your query with

    SET ESCAPE ON
    

提交回复
热议问题