Using the newest SQL update and String Split Function how do I insert the split data back into my table?
select be.*, SS.value
from b2bemployee be
outer apply string_split(firstname, ' ') AS SS
where id=2319
Using that I split my FirstName column into two values and the data is returned on two separate rows. I am trying to insert this data back into my table as updatedfirstname
(before the space) and updatedlastname
(after the space)