I need to modify a column in a SQLite database but I have to do it programatically due to the database already being in production. From my research I have found that in or
As said here, these kind of features are not implemented by SQLite.
As a side note, you could make your two first steps with a create table with select:
CREATE TABLE tmp_table AS SELECT id, name FROM src_table