sql >> Database >  >> RDS >> Mysql

UNION na ORDER BY en LIMIT

U kunt haakjes gebruiken om het gebruik van ORDER . toe te staan /LIMIT op individuele vragen:

(SELECT * FROM some tables WHERE ... ORDER BY field1 LIMIT 0, 1)
UNION   
(SELECT * FROM some tables WHERE ...)
ORDER BY 1   /* optional -- applies to the UNIONed result */
LIMIT 0, 100 /* optional -- applies to the UNIONed result */


  1. TUSSEN operator vs.>=EN <=:Is er een prestatieverschil?

  2. Hoe te repareren "Het partitieschema '...' heeft geen volgende gebruikte bestandsgroep" in SQL Server

  3. mysql root-wachtwoord vergeten

  4. Achterwaartse scan van SQL Server Index:inzicht en prestatieafstemming