Using SELECT with TOP

 

The TOP keyword limits the number of rows returned by a query to a specified number of rows. Percentages are not supported by AnalytiX-BI. The following example retrieves the top 10 products with highest unit price.

 

SELECT TOP 10 * FROM Products

ORDER BY UnitPrice DESC