select top 10 ProductId ,ProductName ,ReleaseData from Product
where ProductId in (
select ProductId from ProductSKU
group by ProductId
having count(SKU) >= 2
)
order by ReleaseData desc
select top 10 ProductId ,ProductName ,ReleaseData from Product
where ProductId in (
select ProductId from ProductSKU
group by ProductId
having count(SKU) >= 2
)
order by ReleaseData desc
select ProductId ,ProductName ,ReleaseData from Product
where ProductId in (
select ProductId from ProductSKU
group by ProductId
having count(SKU) >= 2
)
SELECT TOP 10 ProductId ,ProductName ,ReleaseData
FROM Product
WHERE ProductId IN
(
SELECT DISTINCT ProductId
FROM ProductSKU
GROUP BY ProductId
HAVING Count(SKU) > 1
)
ORDER BY ReleaseData DESC