# Data change delta table

Published articles for Data change delta table.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## The Many Ways to Return Data From SQL DML

DevFeed: [The Many Ways to Return Data From SQL DML](<https://devfeed.tech/articles/the-many-ways-to-return-data-from-sql-dml-28963.md>)

Original publisher: [Read original article](<https://blog.jooq.org/the-many-ways-to-return-data-from-sql-dml/>)

Author: lukaseder

Published: 2022-08-23T15:02:04Z

Content type: tutorial

Language: en

Sources: [jOOQ](<https://devfeed.tech/sources/jooq.md>)

Topics: [SQL](<https://devfeed.tech/topics/sql.md>), [Databases](<https://devfeed.tech/topics/databases.md>), [PostgreSQL](<https://devfeed.tech/topics/postgresql.md>), [Oracle Database](<https://devfeed.tech/topics/oracle-database.md>), [CockroachDB](<https://devfeed.tech/topics/cockroachdb.md>)

Tags: [article](<https://devfeed.tech/tags/article.md>), [cockroachdb](<https://devfeed.tech/tags/cockroachdb.md>), [data-change-delta-table](<https://devfeed.tech/tags/data-change-delta-table.md>), [database](<https://devfeed.tech/tags/database.md>), [firebird](<https://devfeed.tech/tags/firebird.md>), [generated-keys](<https://devfeed.tech/tags/generated-keys.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [jdbc](<https://devfeed.tech/tags/jdbc.md>), [jooq](<https://devfeed.tech/tags/jooq.md>), [mariadb](<https://devfeed.tech/tags/mariadb.md>), [postgresql](<https://devfeed.tech/tags/postgresql.md>), [return-generated-keys](<https://devfeed.tech/tags/return-generated-keys.md>), [returning](<https://devfeed.tech/tags/returning.md>), [sql](<https://devfeed.tech/tags/sql.md>)

### AI overview

This article explains ways to return data from SQL DML statements using jOOQ across multiple SQL dialects and directly through JDBC. It covers RETURNING-style syntax, Oracle PL/SQL emulation, PostgreSQL support, and the SQL standard's data-change-table reference approach.

### Source excerpt

Probably the hardest thing to standardise in SQL is RETURNING data from DML statements. In this article, we'll look at various ways of doing that with jOOQ, in many of jOOQ's supported dialects, and with JDBC directly. How to do it with jOOQ Assuming the usual table from the sakila database: jOOQ took syntactic inspiration ... Continue reading The Many Ways to Return Data From SQL DML ->