Skip to content

Transform Using SQL

Description

This activity transforms the data from previous activities based on a user-specified SQL query. The transformation allows users to filter, aggregate, and manipulate data using SQL syntax.

Input

Data only

Output

Transformed data

Configuration Fields

Query The SQL query used to transform the data. The query should be structured based on the available columns from the previous activity.


Sample Input

Column1Column2Column3
A50120
B3090
A20150
B40110
C25130

Sample Configuration

alt text

Sample Output

Column1Total
A70
B40
C25