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?
You can also use REPLACE():
REPLACE()
UPDATE Table SET Column = REPLACE(Column, 'Test123', 'Test')