I need to move data from one table to another in my Android app
I would like to use the following sql:
insert into MYTABLE2 select id, STATUS rispos
explicitly specify the column name in the INSERT clause,
INSERT
INSERT INTO destinationTable (risposta, data_ins) SELECT STATUS risposta, DATETIME('now') data_ins FROM sourceTable