| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.oracle -> Database query with subselect
Hi there,
I've got a simple table with an ID and a parentID field which build the relation between the entries. Now I want to select some entries and count their childs.
This is what I tried:
SELECT NAME, ID, parentID,
(SELECT COUNT(ID) FROM myTable WHERE parentID=???ID???)
AS CHILDS FROM myTable WHERE parentID=0 ORDER BY parentID ASC
My problem is how to tell oracle to use the ID of the current entry in the main query, not the ID field in the subselect.
Can anybody help me?
Thanks,
Theodor Received on Tue Feb 10 2004 - 08:50:02 CST
![]() |
![]() |