Im trying
That:
SELECT * FROM `db_name` WHERE `username` = REGEXP "/(.)(?=.*\1)/g"
and it returns no data, any walkarounds?
Well what im trying to get is, all data where the username contains duplicated letter or number , such as "x34x", "aafdgd"
the regex works properly on the language directly(PHP), but i want it to work at the database level.