I am new in using stored procedures. I have this query that gets values from tables.
After that, I need to insert the result to another table.
Here's my query:
   SELECT a.gender, 
          b.purpose_abroad_as_per_recorded_travel, 
          b.country_name 
   FROM b   LEFT JOIN a
   ON b.person_id=a.id
and i am planning to insert all the results to table 'c'.
How can i do the select and insert simultaneously using stored procedure? thanks