5. SQL

SELECT TOP 1 SLS.ProductID,PRO.ProductName,SUM(Amount) MİKTAR FROM Sales SLS
LEFT JOIN Products PRO ON SLS.ProductID=PRO.ProductID
GROUP BY SLS.ProductID,PRO.ProductName
ORDER BY MİKTAR DESC