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

UNION efter ORDER BY og LIMIT

Du kan bruge parentes til at tillade brugen af ​​ORDER /LIMIT på individuelle forespørgsler:

(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. Hvordan MariaDB opnår global skala med Xpand

  2. MySQL fuldtekstsøgning mod kolonneværdi?

  3. Automatisk trimning af CHAR-data ved indsættelse i VARCHAR-kolonnen

  4. Sådan trimmes en streng i SQLite