0

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.

X.Creates
  • 19,654
  • 9
  • 68
  • 116

1 Answers1

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