Generate
The generate
function in DUQL is used to create new columns or modify existing ones based on expressions, calculations, and conditional logic. It's a powerful tool for data transformation and enrichment within your query pipeline.
Syntax
Parameters
generate
object
Yes
Key-value pairs where keys are new column names and values are expressions
Behavior
Creates new columns or modifies existing ones based on the provided expressions.
Can reference other columns, use functions, and implement conditional logic.
Executes in the order specified within the
generate
block.
Examples
Basic Column Generation
Boolean Flags
Conditional Logic
Complex Calculations
Using SQL Functions
Financial Calculations
Geospatial Calculations
Best Practices
🏷️ Use clear and descriptive names for generated columns.
🧮 Break down complex calculations into multiple steps for readability.
🔍 Validate your generated columns, especially when using complex expressions.
🚀 Consider performance implications when generating columns with heavy calculations.
📊 Use
case
statements for complex conditional logic.🔄 Remember that columns generated earlier can be used in subsequent generations within the same
generate
block.
💡 Tip: The
generate
function is your Swiss Army knife for data transformation in DUQL. Use it to create new insights, segment your data, and prepare it for deeper analysis. Don't hesitate to combine multiplegenerate
steps in your pipeline for complex transformations!
Last updated
Was this helpful?