4
- What is Binary and what he does?
- What is the difference generated when using the Binary in a query in the Mysql and when it does not use the Binary?
SELECT email, senha from login WHERE usuario = ? && senha = ?
SELECT email,senha from login WHERE BINARY usuario = ? && BINARY senha = ?
- Is there any difference in others SGBD’s, or the Binary nor exists in others SGBD’s?
In C#, JAVA, for example, the syntax says that the logical operator AND should be written like this:
&&
and in PL/SQL, which is language that Sgdbs understand the syntax says it should be written like this:AND
– Reginaldo Rigo