例如,我有一个包含 2 个表的数据库。第一个表(table1)有:
userId int not null auto_increment primary key
userEmail
userPassword
userId 是我的主键,它会自动递增。我的下一张桌子(table2)有:
userProfileId int not null auto_increment primary key
userAge
userGender
userId
userId(来自table2)是我引用table1(userId)的外键。有没有办法将两个表的所有信息都插入并让 table2 中的 userId 自动获取它从 table1 引用的主键?还是我必须为每个表执行多个 INSERTS 并显式使我的外键具有相同的值。