I need to find the rows where a certain column contains line feed.
This does not work:
select * from [table] where [column] like ‘%\n%’
In SO, I found the solution for SQL Server:
New line in Sql Query
But this does not work in Oracle. Is there any ANSI SQL solution? This should be a standard…
If not, what is the solution in Oracle?
An alternative to InStr() that expresses the SQL a bit more in line with the problem. IMHO.