If your data is already in tables, you can try:
INSERT INTO myTable(id, f_name, age)
(SELECT id_source, f_name_source, age_source
FROM source_tables
WHERE filter_conditions);
Like Andy, I had seen samples of inserting/joining with tuples, but they never worked right for me.
Something to...