Select
The select
function in DUQL is used to specify which columns to include in the output, rename columns, compute new columns, or select all columns from a specific table. There's also a select!
variant used to exclude specified columns.
Syntax
or
or
Parameters
select
object or array
Yes (if not using select!
)
Columns to include or rename
select!
array
Yes (if not using select
)
Columns to exclude
Behavior
When
select
is an object, it allows renaming and computing new columns.When
select
is an array, it simply selects the specified columns.select!
excludes the specified columns and keeps all others.Using
table.*
selects all columns from a specific table.
Examples
Basic Column Selection
Renaming and Computing Columns
Selecting All Columns from a Table
Excluding Columns
Mixed Selection with Computation
Complex Expressions
Selecting from Multiple Tables
Using SQL Functions
Window Functions
Best Practices
🎯 Be explicit about which columns you need to improve query performance and readability.
🏷️ Use meaningful names when renaming columns or creating computed columns.
🧮 Leverage the power of expressions and case statements for complex transformations.
🔍 Use
select!
when it's easier to specify columns to exclude rather than include.📊 Be cautious when using
table.*
as it may include unnecessary columns.🚀 Place computationally intensive selections later in your query pipeline for better performance.
Real-World Use Case
Here's an example of a DUQL query that uses select
to prepare a comprehensive customer report:
This query demonstrates:
Joining customer data with orders and products
Aggregating order information
Selecting and renaming relevant columns
Computing new columns using various expressions and SQL functions
Creating a categorical column based on order count
The resulting customer_summary_report
provides a comprehensive view of customer activity and value, showcasing the versatility of the select
function in DUQL.
💡 Tip: The
select
function is your tool for shaping the final output of your DUQL query. Use it to focus on the most relevant data, create meaningful derivations, and present your results in the most useful format for your analysis or reporting needs!
Last updated
Was this helpful?