Using
ALTER TABLE global DROP COLUMN mode;
works as long the column exists.
Using
ALTER TABLE global DROP COLUMN IF EXISTS mode
is not supported in SQLITE.
I would like to run the SQL command in any case. How can I achieve this.
Using
ALTER TABLE global DROP COLUMN mode;
works as long the column exists.
Using
ALTER TABLE global DROP COLUMN IF EXISTS mode
is not supported in SQLITE.
I would like to run the SQL command in any case. How can I achieve this.