From 89bf328a89ec16fb004b202d6e8ee818d2fa967c Mon Sep 17 00:00:00 2001
From: lukaseder
Date: Tue, 2 Oct 2018 13:11:57 +0200
Subject: [PATCH] [#7908] Add documentation about UPDATE .. FROM
---
.../resources/org/jooq/web/manual-3.10.xml | 23 ++++++++++++++++++
.../resources/org/jooq/web/manual-3.11.xml | 23 ++++++++++++++++++
.../resources/org/jooq/web/manual-3.12.xml | 24 +++++++++++++++++++
.../resources/org/jooq/web/manual-3.3.xml | 23 ++++++++++++++++++
.../resources/org/jooq/web/manual-3.4.xml | 23 ++++++++++++++++++
.../resources/org/jooq/web/manual-3.5.xml | 23 ++++++++++++++++++
.../resources/org/jooq/web/manual-3.6.xml | 23 ++++++++++++++++++
.../resources/org/jooq/web/manual-3.7.xml | 23 ++++++++++++++++++
.../resources/org/jooq/web/manual-3.8.xml | 23 ++++++++++++++++++
.../resources/org/jooq/web/manual-3.9.xml | 23 ++++++++++++++++++
10 files changed, 231 insertions(+)
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.10.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.10.xml
index fc7739c9e3..94a71d2fe6 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.10.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.10.xml
@@ -6134,6 +6134,29 @@ create.insertInto(AUTHOR, AUTHOR.FIRST_NAME, AUTHOR.LAST_NAME)
The above row value expressions usages are completely typesafe.
+ UPDATE .. FROM
+
+
+ Some databases, including PostgreSQL and SQL Server, support joining additional tables to an UPDATE statement using a vendor-specific FROM clause. This is supported as well by jOOQ:
+
+
+