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
select * from table_name where column like \' %\'
Have a look at this:
SQL Plus FAQ
e.g.
SET ESCAPE '\' SELECT '\&abc' FROM dual;