hi
i use statement as follows for checking user/pass of users:
Code:
SELECT COUNT(*) AS num FROM `tbUsers` WHERE BINARY username = 'un' AND password = 'pw'
it considers both username and password case-sensetive, how can i change the statement the way that only password considered case-sensetive.
i think BINARY operand affect the entire where statement, am i right?