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 \' %\'
In PL/SQL, you would use:
BEGIN select from into where LIKE '\ \%' ESCAPE '\'; END /
Resources:
Wilcards in SQL on PSOUG.org
LIKE Condition in Oracle® Database SQL Language Reference 11g Release 2 (11.2)