Delete specific values from column with where condition?

前端 未结 5 1096
予麋鹿
予麋鹿 2021-02-05 02:37

I want to delete specific values/data from one column with the WHERE condition. Putting in another way, I don\'t want to delete the complete row. Is it possible?

5条回答
  •  無奈伤痛
    2021-02-05 03:09

    You can also use REPLACE():

    UPDATE Table
       SET Column = REPLACE(Column, 'Test123', 'Test')
    

提交回复
热议问题