my issue is i want to query x rows from tbl_one and loop over the result and insert values into other table
select id as user_id, p_id from users where b_id = 0 // this will give me let's say 10 rows
and now i want to use each of the rows to insert into address table like
insert into addresses (user_id, passenger_id, address_type, address_line1, city, country) value (user_id, passenger_id, 'Test street address', 'XXX', "XX")
how can i do this in mysql. tried searching in mysql documentation from https://dev.mysql.com/doc/refman/5.7/en/loop.html but there the looping logic explained is very static and i didn't understand.
Use INSERT INTO SELECT statement: