Is it possible to order the first enquiry and keep the rows returned as first and not order the second enquiry. (If that makes sence)
An example of my current enquir
You'd need to introduce an artificial sort key. Something like:
SELECT *, 1 as SortKey FROM Devices WHERE Live = 'true' AND Category = 'apple' UNION SELECT *, 2 as SortKey FROM Devices WHERE DeviceLive = 'true' ORDER BY SortKey, ListOrder