Dynamic Data Functions
Complex excel like formulas for recursive and external data
Overview
Quick Start
-- @ddf: true
SELECT
'James' as first_name,
'Smith' as last_name,
'=function(row){ return row.first_name & " " & row.last_name }' as full_name
DDFs vs Common Table Expressions (CTEs) and Recursive CTEs
Evaluation Order
Limitations
Post Processing Only
ChartSQL Studio Desktop Only
Execution Context
Context Variables Reference
Name
Description
Examples
You will typically use DDFs for the following situations:
Fibonacci Series
Compound Interest Rate
Last updated