I want to remove something from my table 1) 32) 121) 1000)... the format is number + )
1)
32)
121)
1000)
number
)
Finally, I use some php to solve this problem with a quickly method.
for ($i=1; $i<=9999; $i++){ $my_regex = $i.')'; mysql_query("UPDATE articles SET title = REPLACE(title,'".$i."', '' ) where title like '%".$i."%'"); }