Hi there,
I'm searching for the best way to display parent and child entries in one row. Example:
Table A
ID | PARENT_ID | VALUE
=============================
1 | | A
2 | 1 | B
3 | 2 | C
4 | | D
5 | 4 | E
So I want to get the following result:
ID | PARENT | CHILD | VALUE
=========================================
2 | 1 | 3 | A
5 | 4 | | E
How would you solve this?
Any help his very appreciated.
Daniel