I Have table like below mentioned. table name parentChildTable
------------------------------------
| ID | Description |Parent ID|
-------------------------------------
| 1101 | Root | '' |
| 1102 | Child of 1101| 1101 |
| 1105 | Child of 1101| 1101 |
| 1103 | Child of 1102| 1102 |
| 1104 | Child of 1102| 1102 |
| 1178 | Child of 1105| 1105 |
| 11440 | Child of 1105| 1105 |
| 11567 | Childof 11440| 11440 |
| 12904Y | Child of11567| 11567 |
| 125687 | Child of 1101| 1101 |
now with 1101 --> root as parameter i need its child and sub childs till the no child level (I mean till leaves)
Sample output should be like this
------------
| ID |
-------------
| 1102 |
| 1105 |
| 1103 |
| 1104 |
| 1178 |
| 11440 |
| 11567 |
| 12904Y |
| 125687 |
thanks in advance.