I have an sqlite3 database. One of the columns has mostly integer values (either positive or negative). In a few cases, the value is "not found" or "missing" or other text strings.
I want to replace all those non-integer values with NULL. The column type is TEXT out of an original necessity.
Is there a clever way to do that with a UPDATE...WHERE clause instead of something gross, like pulling it into python to correct?