Matillion Roadmap and Ideas

Welcome to the Matillion Roadmap

Last updated: 05/05/2025
Check out our recently delivered features here.

Add DELETE FROM functionality

DELETing from a table specific rows is quite common, and Re-Writing the whole table is an unnecessary workload on the DB. Please add the DELETE FROM functionality. Currently we are using SQL SCRIPT to achieve this.

https://docs.databricks.com/aws/en/sql/language-manual/delta-delete-from

https://docs.snowflake.com/en/sql-reference/sql/delete

eg: Try to code this in Matillion

DELETE P
  FROM Product P
  LEFT JOIN OrderItem I ON P.Id = I.ProductId
 WHERE I.Id IS NULL