Solved
Return top X results from Query Builder report
Version: Windchill 13.0
Use Case: I have a query that can return thousands of results but only need to see the first 10 to 20 based on sort order.
Description:
I can return the top 10 results in TSQL with:
SELECT TOP 10 {column} ... ORDER BY {column} DESC
Can we do this with Query Builder?

