The Text column of my articles table contains html tags, the query returns a false result when I use a SELECT with LIKE:
Here is my request:
SELECT Text FROM articles Text LIKE '%aaa%'
I then try to remove the html tags before doing the LIKE of the SELECT. I tried using regexp_replace but it doesn't work
(SELECT regexp_replace(Text, '<[^>]*>| ', '')
If you could help me. Thanks.