I have this table on oracle db:

Can i do nested select query that change the PARENT column to the name associated with it?
like this:

I have tried:
SELECT PC.ID
,(
SELECT PC.NAME from PRODUCTS_CATEGORIES PC where PC.PARENT = PC.ID
)
,PC.NAME
FROM PRODUCTS_CATEGORIES PC
and got this error:
Error Message: ORA-01427: single-row sub query returns more than one row
You can do this
OR