Skip to content

Commit 0020c79

Browse files
committed
returning implemented, column as identifier allowed
1 parent 733ff6d commit 0020c79

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,13 @@ The generated hierarchy can be navigated using the Visitor Pattern.
3434

3535
## Extensions Version 0.9.1
3636

37-
* Included support for multitable update statements..
37+
* 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.
3844

3945
```sql
4046
UPDATE table1, table2 SET table1.col2 = table2.col2, table2.col3 = 'UPDATED' WHERE table1.col1 = table2.col1

0 commit comments

Comments
 (0)