

How can I transfer the data from column of one table to another table?
Table 1 (sell_products)
_____________________________________
| sale_id | product_id | qty | price |
|   3     |     11     |  24 |   6   |
_____________________________________
Table 2 (sell_list)
_________________________________________________________________
| id | user_id |     code     | client_name | quantity | amount |
|  3 |    1    | 202210070001 |    jet      |    0     |   144  |
_________________________________________________________________
I want to copy every value of qty from table 1 to table 2 quantity.
For now, I'm still trying to figure it out.
 
    