We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c183ed commit dfda139Copy full SHA for dfda139
1 file changed
README.md
@@ -32,6 +32,14 @@ configuration details below.
32
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
33
The generated hierarchy can be navigated using the Visitor Pattern.
34
35
+## Extensions Version 0.9.1
36
+
37
+* Included support for multitable update statements..
38
39
+```sql
40
+UPDATE table1, table2 SET table1.col2 = table2.col2, table2.col3 = 'UPDATED' WHERE table1.col1 = table2.col1
41
+```
42
43
## Extensions Version 0.9
44
45
* Included support for some keyword object names.
0 commit comments