|
|
Queries:
Create a query that returns Top n records |
Author(s) |
Dev
Ashish |
|
|
(Q) How do I create query that returns the top 5 records based on
ProductUnitPrice in my table?
(A) Use the following SQL as an example.
SELECT Top 5 ProductName, ProductUnitPrice
FROM Products
GROUP BY ProductName, ProductUnitPrice
ORDER BY ProductUnitPrice Desc; |
|
|