I want to insert a row of data into table A which contains the columns: School, Name, Colour, Age. Using the where clause I will need to get this information from the following tables: School_table, Name_table, Colour_table and Age_table.
INSERT INTO A (School, Name, Colour, Age)
// how do I add the values from the other tables into their respective columns?