How to set all values in a column to empty (null)?. To reset the value of a nullable column for every row in a table.
Asked
Active
Viewed 110 times
1 Answers
1
Just ignore the WHERE clause would do the trick. How to change a value in a column on a SQLite database?
UPDATE table_name SET column_name = NULL
X.Creates
- 19,654
- 9
- 68
- 116