SQLite Forum

How to insert certain table_1 column value in table_2 along with new user input values
Login
```
c.execute('insert into table_2 select max(id), ?, ?, ? from table_1', (item_name, item_code, cost_price))
```