sql >> Database >  >> RDS >> Mysql

MySQL-limietresultaten per categorie

MySQL heeft geen rangschikkingsfunctionaliteit, maar u kunt een variabele gebruiken om een ​​pseudorijnummer te maken.

Gebruik:

SELECT x.*
  FROM (SELECT cm.id,
               cm.title AS cmtitle,
               cm.sectionid,
               cm.type AS cmtype,
               cd.id AS cd_id,
               cd.time,
               cd.link,
               cd.title,
               cd.description,
               cd.sectionid AS cd_sectionid,
               CASE
                 WHEN @sectionid != cm.sectionid THEN @rownum := 1 
                 ELSE @rownum := @rownum + 1
               END AS rank,
               @sectionid := cm.sectionid
          FROM C_MAIN cm,
               C_DATA cd,
               (SELECT @rownum := 0, @sectionid := NULL) r
         WHERE cm.sectionid = cd.sectionid
      ORDER BY cm.sectionid) x
 WHERE x.rank <= 20
ORDER BY id


  1. Werken met Java-gegevens in Qlik Sense

  2. Hoe kan ik geselecteerde rijen bijwerken met waarden uit een CSV-bestand in Postgres?

  3. Hoe kan ik efficiënt tekst naar getal converteren in Oracle PL/SQL met niet-standaard NLS_NUMERIC_CHARACTERS?

  4. Vergrendelen voor SELECT zodat een ander proces geen oude gegevens krijgt