Sort
The sort
function in DUQL is used to specify the order of rows in the output. It supports sorting by multiple columns, in ascending or descending order, and can use complex expressions for sorting criteria.
Syntax
Parameters
sort
string, array, or object
Yes
Specifies the sorting criteria
Behavior
Sorts the dataset based on the specified criteria.
Can sort by single or multiple columns.
Supports ascending (default) and descending order.
Can use expressions and SQL functions for complex sorting.
Examples
Sort by a Single Column
Sort in Descending Order
Sort by Multiple Columns
Sort with Complex Criteria
Sort with Column Renaming
Sort with Expressions
Sort with SQL Functions
Best Practices
🎯 Choose sorting criteria that align with your analysis goals.
🔢 Use descending order (prefix with
-
) for "top N" type queries.📊 Consider performance implications when sorting large datasets.
🧮 Leverage expressions and SQL functions for complex sorting logic.
🚀 Place
sort
beforetake
when you want to limit results based on the sort order.🔍 Be explicit about sort order for clarity, even when using the default ascending order.
Real-World Use Case
Here's an example of a DUQL query that uses sort
to analyze customer purchase behavior:
This query demonstrates:
Joining order data with customer information
Calculating total amount and days since last order
Grouping and summarizing by customer
Generating a customer value category
Sorting by multiple criteria:
Total spent (descending)
Order count (descending)
Last order date (ascending)
Taking the top 100 customers based on this sorting
The sort
step ensures that we get the most valuable customers, prioritizing those who have spent more, made more orders, and purchased more recently.
💡 Tip: The
sort
function is crucial for organizing your data meaningfully. Combine it withtake
to efficiently retrieve the most important subset of your data based on your sorting criteria!
Last updated
Was this helpful?