SQL Query to remove hyperlinks from a column
I have a column dek with the following data
I like Stack Overflow site. The users and answers are good. I also like site1.com and site2.com开发者_开发知识库.
I want to retrun the data as follows
I like Stack Overflow site. The users and answers are good. I also like site1.com and site2.com.
Basically, want to remove all the hyperlinks from the column. Please let me know how to write the SELECT query. I am using SQL Server.
Thanks.
You will need to use a function to strip all the HTML from the column contents. Here is a link to a function that will strip out HTML.
http://blog.sqlauthority.com/2007/06/16/sql-server-udf-user-defined-function-to-strip-html-parse-html-no-regular-expression/
精彩评论