I've made this sql view to combine some tables and it works, but it's not editable (i can't insert, delete, edit) data directly in it, but only if i do so in the initial tables, so is there any way to do the same (edit data) directly into the view?
Create view table4 as
Select table1.firstname, table1.lastname, table2.bodyweight, table3.bodyfat
From table1
LEFT JOIN table2 ON table1.table1_id = table2.table2_id;
LEFT JOIN table3 ON table1.table1_id = table3.table3_id;