- What is Binary and what does it do?
- What is the difference generated when using Binary in a query in MySQL and when not using Binary ?
SELECT email, senha from login WHERE usuario = ? && senha = ?
SELECT email,senha from login WHERE BINARY usuario = ? && BINARY senha = ?
-
Is there any difference in other DBMS's , or Binary and does not exist in other DBMS's ?