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 733ff6d commit 0020c79Copy full SHA for 0020c79
1 file changed
README.md
@@ -34,7 +34,13 @@ 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..
+* Included support for returning for insert statements.
38
+
39
+```sql
40
+INSERT INTO mytable (mycolumn) VALUES ('1') RETURNING id
41
+```
42
43
+* Included support for multitable update statements.
44
45
```sql
46
UPDATE table1, table2 SET table1.col2 = table2.col2, table2.col3 = 'UPDATED' WHERE table1.col1 = table2.col1
0 commit comments