sql >> Database teknologi >  >> RDS >> Mysql

Optimer MySQL-forespørgsel for at undgå at bruge hvor; Brug af midlertidig; Bruger filsortering

SELECT  id, name, last_reply, replies
FROM    (
        SELECT  topic_id, MAX(date) AS last_reply, COUNT(*) AS replies
        FROM    wp_pod_tbl_forum
        GROUP BY
                topic_id
        ) r
JOIN    wp_pod_tbl_forum t
ON      t.topic_id = 0
        AND t.id = r.topic_id
UNION ALL
SELECT  id, name, date, 0
FROM    wp_pod_tbl_forum t
WHERE   NOT EXISTS
        (
        SELECT  NULL
        FROM    wp_pod_tbl_forum r
        WHERE   r.topic_id = t.id
        )
        AND t.topic_id = 0
ORDER BY
       date DESC
LIMIT 0, 20

Hvis din tabel er MyISAM eller id er ikke en PRIMARY KEY , skal du oprette et sammensat ondex på (topic_id, id) .

Hvis din tabel er InnoDB og id er en PRIMARY KEY , et indeks lige på (topic_id) vil gøre (id vil implicit blive tilføjet til indekset).

Opdater

Denne forespørgsel vil højst sandsynligt være endnu mere effektiv, forudsat at du har indekser på (topic_id, id) og (date, id) :

Se denne artikel i min blog for detaljer om ydeevne:

Denne forespørgsel afsluttes på 30 ms på en 100,000 rækker eksempeldata:

SELECT  id, name, last_reply,
        (
        SELECT  COUNT(*)
        FROM    wp_pod_tbl_forum fc
        WHERE   fc.topic_id = fl.topic_id
        ) AS replies
FROM    (
        SELECT  topic_id, date AS last_reply
        FROM    wp_pod_tbl_forum fo
        WHERE   id = (
                SELECT  id
                FROM    wp_pod_tbl_forum fp
                WHERE   fp.topic_id = fo.topic_id
                ORDER BY
                        fp.date DESC, fp.id DESC
                LIMIT 1
                )
                AND fo.topic_id <> 0
        ORDER BY
                fo.date DESC, fo.id DESC
        LIMIT 20
        ) fl
JOIN    wp_pod_tbl_forum ft
ON      ft.id = fl.topic_id
UNION ALL
SELECT  id, name, date, 0
FROM    wp_pod_tbl_forum t
WHERE   NOT EXISTS
        (
        SELECT  NULL
        FROM    wp_pod_tbl_forum r
        WHERE   r.topic_id = t.id
        )
        AND t.topic_id = 0
ORDER BY
       last_reply DESC, id DESC
LIMIT  20

Begge indekser er nødvendige for at denne forespørgsel er effektiv.

Hvis din tabel er InnoDB og id er en PRIMARY KEY , så kan du udelade id fra indexes ovenfor.



  1. overføre tabel- og kolonnenavn dynamisk ved hjælp af bindevariabler

  2. MySQL med Soft-Deletion, Unique Key og Foreign Key Constraints

  3. MySQL:Hvordan tilmelder jeg mig samme bord flere gange?

  4. SQL joins