DrumAt5280
Technical User
I would like to query my FAQ table but return only the top 5 most viewed questions, how do i limit the recordset to just first 5 results?
Code:
<cfquery name="top5">
SELECT *
FROM FAQ
(limit to top 5 results)
ORDER BY views DESC
</cfquery>