I\'m doing some searching of tags, and some users like \"cat\" while others like \"Cat\" Go figure...
Anyways, is there a way to force a particular find to be case sens
You can also do a case-sensitive search without changing your column properties.
SELECT * FROM mytable WHERE myfield='Value'
This query matches:
While...
SELECT * FROM mytable WHERE BINARY myfield='Value'
Matches only: