ok, so lets say your master table has field1,field2,field3,field4,field5
childTable1 has
field1,field2,field3
As I understand, you want to take the data from childTable1 and insert it into master. If this is right, then you use
INSERT INTO master (field1, field2, field3) SELECT * FROM childTable1