Exactly as I wrote in my original answer, but use Min instead of First.
Not this: SELECT Title, First(SKU) as SomeSKU from YourTable GROUP BY Title;
but this: SELECT Title, Min(SKU) as SomeSKU from YourTable GROUP BY Title;
--Graham