I'm trying to check if a specific ID can be located within a hierarchy.
I have a list of categories stored in a hierarchical fashion. Example
(0x, 0, 1, 'root'),
(0x58, 1, 2, 'Market Zone'),
(0x5AC0, 2, 3, 'Informática'),
(0x5AD6, 3, 8, 'Accesorios Robótica'),
(0x5ADA, 3, 9, 'Accesorios Eléctricos'),
(0x5ADE, 3, 10, 'Equipos'),
(0x5ADEB0, 4, 12, 'Portátiles'),
(0x5ADED0, 4, 11, 'Accesorios Portátil'),
(0x5ADEF0, 4, 13, 'Máquinas de Oficina'),
(0x5ADF08, 4, 14, 'PC y TPV'),
(0x5ADF18, 4, 15, 'Accesorios PC y TPV'),
(0x5ADF28, 4, 16, 'Servidores'),
(0x5AE1, 3, 17, 'Iluminación'),
(0x5AE3, 3, 18, 'Periféricos - Informática'),
(0x5AE358, 4, 41, 'Cajas Externas')
The items table has a field that links to the category that the item belongs to. What I'm trying to achieve is to list (by level) only the category "branches" that has items.
I hope it's clear enough this time.
Thanks for your help.
P.S.: Forgeive me about the Spanish descriptors, but the application is in Spanish
In Oracle you can use the
CONNECT_BY_ROOT
operator to show only the root elements. You might need to useDISTINCT
as well in an outer query.