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 a0b21c3 commit d2dcfaeCopy full SHA for d2dcfae
README.md
@@ -17,6 +17,14 @@ configuration details below.
17
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
18
The generated hierarchy can be navigated using the Visitor Pattern.
19
20
+## Extensions Version 0.8.6
21
+
22
+* Added first support for Oracle hierarchical queries
23
+```sql
24
+SELECT * FROM employees CONNECT BY employee_id = manager_id ORDER BY last_name;
25
+SELECT * FROM employees START WITH employee_id = 100 CONNECT BY PRIOR employee_id = manager_id ORDER SIBLINGS BY last_name;
26
+```
27
28
## Extensions Version 0.8.5
29
30
* Added support for mysql truncate function
0 commit comments