User Tools

Site Tools


programmazione:insert_di_master_e_detail

INSERT di master e detail in MySQL

Lo si fa attraverso una variabile.

INSERT INTO table1 (id,value) VALUES(1,'test');
SET @last_id := (SELECT LAST_INSERT_ID());
INSERT INTO table2 (id,colName) VALUES(@last_id,"newVal_1");
programmazione/insert_di_master_e_detail.txt · Last modified: 28/08/2020 12:34 by 127.0.0.1