79087266

Date: 2024-10-14 18:14:45
Score: 0.5
Natty:
Report link

Which way are things?

There is a mess because of "Mojibake". Each accented letter was stored as two "latin1" bytes.

Before pursuing the problem further, please provide

SHOW CREATE TABLE T;
SELECT HEX(columnname) FROM T ...;  -- (for a sample)

What will you do with the rows that are returned? This may impact the answer.

As of about a decade ago "latin1" is the wrong way to store accented letters. So, I will also recommend converting the dataset to utf8mb4.

What version of MySQL are you running? (This impacts whether utf8mb4 is available and whether regexp can handle things like what is in the Comments.)

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which
  • High reputation (-2):
Posted by: Rick James