I have an issue with a file that\'s created from data (in format of bytes) returned from the database. the problem is that there is a few newlines in the file. i wou
You can write something like:
SELECT id FROM table_name WHERE field_name LIKE '%'||CHR(10)||'%' ;
(|| is the concatenation operator; CHR(10) is the tenth ASCII character, i.e. a newline.)
||
CHR(10)