I need to replace certain string in a table column named "Description" with many rows. One of the descriptions in a row may look like this:
Apple iPhone 12 64GB for AT&T. Includes SIM card and USB charging cable, no other accessories. Cosmetic condition: good, with few minor marks or scratches.
I need to replace the string from "Includes" to "accessories" with another string, so it will look like this:
Apple iPhone 12 64GB for AT&T. Includes phone only. Cosmetic condition: good, with few minor marks or scratches.
Because the words between "Includes" and "accessories" may be different among the rows so I cannot use an exact phrase to match and replace. The substrings I want to replace always starts with "Includes" and end with "accessories" so I must use those words as reference to replace them. Please advise.
I tried
Update Descriptions
SET Description = REPLACE (Description, ***, ***)
but couldn't figure out what to place in ***