Posts by Fabio Bueno • 39 points
1 post
-
3
votes0
answers264
viewsQ: Remove HTML tags with regexp in query
I am trying to query Mysql 5.7 using regexp to ignore HTML tags, so far I have the following query: SELECT * FROM question WHERE question.enunciation REGEXP '[^<|</]center[^\>]' = true…