I'm convinced this will make me slap myself when I see the answer but here goes...
Say I need a list of all products from a certain vendor but they need to order by a specific variable productType at the top and below it doesn't really matter but all products have to be in the list.
So basically
SELECT * FROM Products p WHERE p.VendorID = 1 AND p.ProductType = 'widget'
as the first rows to display. Then,
SELECT * FROM Products p WHERE p.VendorID = 1 AND p.ProductType <> 'widget'
underneath that.
I'm using LINQ if that helps any but I can't even get this in regular SQL queries