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?
Try this SQL statement:
update Table set Column =( Column - your val )