I have a query that produces a list of SKUs based on certain criteria. How can I add a field in the query to each SKU to number the list in numerical order. For instance, if the query returns
SKU Yhlo23 Thj23 Whj24
How can I get it to number the SKUs based on the results of the query as such?
SKU Order Yhlo23 1 Thj23 2 Whj24 3
Thank you!