You can specify which columns you're inserting into. Assuming that the _id column is autoincrement and you're inserting the other two columns, you can have something like this:
insert into MYTABLE2 (riposta, data_ins)
select STATUS risposta, DATETIME('now') data_ins from MYTABLE 2