SQL query for a carriage return in a string and ultimately removing carriage return

后端 未结 10 1532
-上瘾入骨i
-上瘾入骨i 2020-12-04 17:37

SQL query for a carriage return in a string and ultimately removing carriage return

I have some data in a table and there are some carriage returns in places where I

10条回答
  •  悲&欢浪女
    2020-12-04 18:06

    this works: select * from table where column like '%(hit enter)%'

    Ignore the brackets and hit enter to introduce new line.

提交回复
热议问题