Skip to main content
Transform data using SQL queries. SQL steps read from tables produced by previous steps and produce new output tables:

SQL safety

  • Only SELECT statements and CTEs (WITH ... AS) are allowed
  • Mutations (i.e. INSERT, UPDATE, DELETE) are blocked
  • Variables are parameterized to prevent SQL injection
  • Tables are isolated per job — one job cannot access the results of any other job

Validation