I’am trying to delete words which have 2 capital letters consecutively with MySQL. Like: “ABC”, “AA”, “NBC”. No others.
The following query doesn’t work (it finds all words, which have 2 letters)
WHERE names REGEXP '[A-Z][A-Z]'
Do you know how to do that?
http://dev.mysql.com/doc/refman/5.5/en/regexp.html