I want to retrieve top 5 rows returned by this query. How to do this
select COUNT(trippackageID), trippackageid
from tbl_holiday_booking
group by trippackageID
|
I want to retrieve top 5 rows returned by this query. How to do this
|
|||||||
|
|
You are not specifying the order, do you want the package with the most bookings or the least?
|
|||||||
|
|
select top 5 * from.... |
|||
|
|
Assuming you do, in fact, want to order by the count, descending (large to small). LIMIT 0,5 starts at row 0, and returns the next 5 rows. |
|||
|
|
|
|||
|
|