Question
Get Last ID, Insert Into Other Table
I want to do this
get value from multiple select as newRefs;
insert into table1 ('name') values ('pete');
SELECT LAST_INSERT_ID() as newUserId;
for each (currentRef in newRef) {
insert into lookupTable1 (userId,ref) values (newUserId,currentRef);
}
Actually there is a quicker way to do this with MySQL/MariaDB as noted here
https://dev.mysql.com/doc/refman/8.0/en/insert.html

What do I need to do this?
Do I use Data Store Entities, Record Types, etc.?
I can't be the first one that want to do something like this.
