This article is tagged with:
Sql delete all values in a column
and mysql
sql delete all values in a column
UPDATE TableName SET ColumnName = NULL
remove from table where
DELETE FROM table_name WHERE condition;