ORDER
. के उपयोग की अनुमति देने के लिए आप कोष्ठक का उपयोग कर सकते हैं /LIMIT
व्यक्तिगत प्रश्नों पर:
(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 */