i have a table with the column id, itemID and locationId.
i have now split one locationId into multiple ones so i want to:
Update all records where locationId is 10 and have two rows where locationId is set to 11 and 12 (ItemId would be the same for both rows)
So to start i have:
Id ItemID LocationID
1 1 10
and i want to end up with
Id ItemID LocationID
1 1 11
1 1 12
is there any convenient way of doing this given its an update and an insert at once
Possibly there’s a single statement that can do it but why wouldn’t you just use transactions, a vendor-agnostic way:
I always tend to use standard SQL where possible so as to be able to switch between vendors easily, never mind the fact I haven’t switched vendors for over a decade now 🙂
Still, it’s nice to have the ability even if I never use it (though sometimes I’ll go vendor-specific for performance reasons if required – I don’t think that’ll be necessary for this particular use case since it’s probably not something you’ll be doing a lot of).