I have a column that contains links. The problem is that the titles of the links are in the same column, so it looks like this: linktitle|-|linkurl I want l
linktitle|-|linkurl
UPDATE TableName SET LinkTitle = Substring(LinkColumn, 0, InStr(LinkColumn, '|-|') - 1), LinkUrl = Substring(LinkColumn, InStr(LinkColumn, '|-|') + 3)
With LinkColumn being the currently existing column, and LinkTitle & LinkUrl being where you want to store the separated data.