Does anyone know what is the reason of my mysql giving the same results for:
select * from table where column = "xyz"
and
select * from table where column = "xyz "
(but
select * from table where column = " xyz"
not equals to
select * from table where column = "xyz";
Thanks!