How to search new line char in oracle table?

后端 未结 4 1615
走了就别回头了
走了就别回头了 2021-01-08 00:26

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

4条回答
  •  花落未央
    2021-01-08 01:04

    This worked the best for me.

    select * from label_master where regexp_like (text, chr(10));

提交回复
热议问题