MySQL SELECT DISTINCT should be case sensitive?
问题 How do I make MySQL's SELECT DISTINCT case sensitive? create temporary table X (name varchar(50) NULL); insert into X values ('this'), ('This'); Now this query: select distinct(name) from X; Results in: this What's going on here? I'd like SELECT DISTINCT to be case sensitive. Shouldn't that be the default? 回答1: Use BINARY operator for that: SELECT DISTINCT(BINARY name) AS Name FROM X; You can also CAST it while selecting: SELECT DISTINCT (CAST(name AS CHAR CHARACTER SET utf8) COLLATE utf8_bin