I have a table with column id, itemID and locationId.
Now I split one locationId into several, so I want:
Refresh all records where locationId is 10, and have two lines where locationId is set to 11 and 12 (ItemId will be the same for both lines)
So, to get started, I:
Id ItemID LocationID
1 1 10
and I want to finish with
Id ItemID LocationID
1 1 11
1 1 12
is there any convenient way to do this given its updating and insertion right away
source
share