How to select single quote mark exist records using oracle regex

前端 未结 2 1936
别跟我提以往
别跟我提以往 2021-01-24 06:00
Table Name : Student

----------------
ID | NAME | ADDRESS
----------------
1 | Mark | Queen\'s Road
2 | Ann  | Church Road
3 | Sam  | Temple Road

I need to get si

2条回答
  •  礼貌的吻别
    2021-01-24 06:39

    im not sure about oracle but in Mysql following query will work for your purpose

    select * from student where address like "%'%"
    

提交回复
热议问题