up vote 0 down vote favorite

Hello!

I'm running this query:

SELECT DISTINCT CONCAT(ALFA_CLAVE, FECHA_NACI) FROM listado GROUP BY ALFA_CLAVE HAVING count(CONCAT(ALFA_CLAVE, FECHA_NACI)) > 1

Is there any way to optimize it? Queries are taking 2-3 hours on a table with 850,000 rows.

Adding an index to ALFA_CLAVE and FECHA_NACI would work?

Thanks in advanced

link|flag

50% accept rate

2 Answers

up vote 0 down vote

mysql don't have functional/expression index capability, it cannot put an index on a function/expression.

try it this way, i.e. concat them later:

select concat(x.alfa_clave, x.fecha_naci) 
from
(
    SELECT ALFA_CLAVE, FECHA_NACI 
    FROM listado 
    GROUP ALFA_CLAVE, FECHA_NACI 
    HAVING COUNT(*) > 1
) as x
link|flag
If you put the sub-select in a temporary table first, you can shave off some seconds: create temporary table temp1 SELECT ALFA_CLAVE, FECHA_NACI FROM listado GROUP ALFA_CLAVE, FECHA_NACI HAVING COUNT(*) > 1; select concat(alfa_clave, fecha_naci) from temp1; – Seth Jul 1 '09 at 2:07
up vote 0 down vote

it's great i was tried, and ok.

link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.