I've created in MySQL form1 with table1 and table2. Table1 keeps data like firstname, lastname, age and Table2 keepds data of bodyweight and bodyfat.
I used this code in order to make a new table3 where firstname, lastname, and bodyweight are displayed (but only the data that are already inserted to the tables):
Create table table3 as
Select table1.firstname, table1.lastname, table2.bodyweight
From table1
LEFT JOIN table2 ON table1.table1_id = table2.table2_id;
The problem is that when I'm inserting new data to table1 they aren't been displayed to table3... Any thoughts on what may be the cause?