I have a fairly static (InnoDB) table T with four columns: A, B, C and D.
I firstly wish to identify, for a given value of A, which value(s) of B yield unique C across all records. My attempt is as follows:
CREATE PROCEDURE P(x int) BEGIN
SELECT B
FROM T
WHERE A = x
GROUP BY B
HAVING COUNT(DISTINCT C) = COUNT(C);
END
But introducing the GROUP BY dramatically reduces the performance of this query, despite there being an index on column B. Is there a more efficient way, or can I improve the peformance of this query somehow?
In response to Daan's comment below, the table was created with the following:
CREATE TABLE T (
A int(11) NOT NULL,
B varchar(45) NOT NULL,
C varchar(255) DEFAULT NULL,
D int(11) NOT NULL,
PRIMARY KEY (A,B,D),
KEY iA (A),
KEY iB (B),
KEY iC (C)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
In response to tombom's comment below, the query is explained as follows:
+----+-------------+-------+------+---------------+---------+---------+-------+---------+-----------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------+------+---------------+---------+---------+-------+---------+-----------------------------+
| 1 | SIMPLE | T | ref | PRIMARY,iA | PRIMARY | 4 | const | 2603472 | Using where; Using filesort |
+----+-------------+-------+------+---------------+---------+---------+-------+---------+-----------------------------+
CREATE TABLEin a moment.ORDER BY NULLdoes not give any significant improvement.SELECT DISTINCT B(without aGROUP BY) prevents discovering which yield uniquely differentC. – eggyal Mar 27 '12 at 9:39