Really strange error on mysql query -
i have query, , think talks itself:
mysql> select id,email members email "%abraham.sustaita@gmail.com%"; +--------+----------------------------+ | id | email | +--------+----------------------------+ | 272118 | abraham.sustaita@gmail.com | +--------+----------------------------+ 1 row in set (0.69 sec) mysql> select id,email members email = "abraham.sustaita@gmail.com"; empty set (0.00 sec) mysql> select id,email members id = 272118; empty set (0.00 sec)
the data exists, returns empty if use other like...
when there such flagrant impossible sequence of queries, it's time think table (or index) corruption , run mysql check
command.
in case, running repair table members quick
did trick.
Comments
Post a Comment