How to split a string after specific character in SQL Server and update this value to specific column April 30, 2023 by Tarik Try this: UPDATE YourTable SET Col2 = RIGHT(Col1,LEN(Col1)-CHARINDEX("https://stackoverflow.com/",Col1))