Delete specific values from column with where condition?

tina picture tina · Jan 19, 2011 · Viewed 194.6k times · Source

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?

Answer

BvdVen picture BvdVen · Jan 19, 2011
UPDATE YourTable SET columnName = null WHERE YourCondition