I have this query
SELECT u0_.id AS id_0, u0_.uid AS uid_1, u0_.username AS username_2
FROM user u0_
WHERE u0_.uid = '3XW3Z1zD6JEV1600164577' OR u0_.id = '3XW3Z1zD6JEV1600164577';
that return two results:
user with id 3
user with uid 3XW3Z1zD6JEV1600164577
I tried using sequel pro to confirm and still get wrong result:
If I remove the first 3
from the uid like this XW3Z1zD6JEV1600164577
I get no match. so why is behaving like a LIKE
??