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 d2dcfae commit 22c3ee9Copy full SHA for 22c3ee9
README.md
@@ -20,6 +20,7 @@ The generated hierarchy can be navigated using the Visitor Pattern.
20
## Extensions Version 0.8.6
21
22
* Added first support for Oracle hierarchical queries
23
+
24
```sql
25
SELECT * FROM employees CONNECT BY employee_id = manager_id ORDER BY last_name;
26
SELECT * FROM employees START WITH employee_id = 100 CONNECT BY PRIOR employee_id = manager_id ORDER SIBLINGS BY last_name;
0 commit comments