Please help me, how to filter words in SQL using a function?
I\'m having a hard time if I explain it so I\'m giving example:
ID | Websit
I can give a small hack, you can use T-SQL function. Try this:
SELECT ID, PARSENAME(WebsiteName, 2) FROM dbo.YourTable .....