Expressions
Expressions in DUQL are powerful constructs used to perform calculations, comparisons, and transformations on data. They are fundamental to many DUQL operations, including filtering, generating new columns, and defining conditions.
Syntax
DUQL expressions can take one of four forms:
Inline Expression
SQL Statement
Case Statement
Pipeline
Inline Expression
SQL Statement
Case Statement
Pipeline
Types of Expressions
Inline Expressions
Inline expressions are boolean expressions written directly in DUQL syntax. They can include column references, literals, operators, and function calls.
Examples:
SQL Statements
SQL statements allow you to use raw SQL within your DUQL queries. This is useful for complex operations or database-specific functions.
Examples:
Case Statements
Case statements provide a way to express conditional logic. They consist of a series of condition-result pairs. The first condition that evaluates to true determines the result.
Examples:
Pipelines
Pipelines are a powerful feature in DUQL that allow you to chain multiple operations or functions together. They provide a clear, left-to-right reading order for complex transformations on a row level.
Syntax:
Examples:
How Pipelines Work:
The initial value (often a column name) is passed as input to the first function.
The result of each function is passed as the last argument to the next function.
The final result is the output of the last function in the pipeline.
For example, the pipeline:
is equivalent to:
This makes it easier to read and write complex nested function calls, especially when dealing with data transformations that involve multiple steps.
Complex Expression Examples
DUQL expressions can combine multiple operations and functions for sophisticated data manipulation:
Best Practices
๐ง Keep expressions readable by breaking complex logic into smaller parts.
๐ข Use parentheses to clarify the order of operations in complex calculations.
๐งช Test expressions with sample data to ensure they produce expected results.
๐ Consider performance implications of complex expressions, especially in large datasets.
๐ Leverage built-in functions to simplify common operations.
๐ Use case statements for clear, multi-condition logic.
๐ When using SQL statements, ensure they are compatible with your target database.
๐ Use pipelines to make complex transformations more readable and maintainable.
Related Functions
filter
: Often uses expressions to define row selection criteria.generate
: Uses expressions to create or modify columns.group
: Can use expressions in summarizations and having clauses.sort
: May use expressions to define custom sorting logic.
๐ก Tip: Pipelines in DUQL expressions are a powerful tool for creating clear and maintainable data transformations. They allow you to break down complex operations into a series of simple steps, making your queries easier to read and modify. Experiment with pipelines to streamline your data processing logic!
Last updated
Was this helpful?