Skip to content

Commit dfda139

Browse files
committed
fixes #56 : multitable updates
1 parent 9c183ed commit dfda139

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ configuration details below.
3232
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
3333
The generated hierarchy can be navigated using the Visitor Pattern.
3434

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+
3543
## Extensions Version 0.9
3644

3745
* Included support for some keyword object names.

0 commit comments

Comments
 (0)