I am trying to find the best way to find records in a table that fall within the same hierarchy.
EX.
Update every customer that has a parent of XXX and propagate that down to all the child relationships.
# 100
# 101 (Child of 100) Cust. 102 (Child of 100)
# 120 (Child of 101) # 121 (Child of 101)
I can accomplish using several queries but would prefer to use arrays.
EX.
Update every customer that has a parent of XXX and propagate that down to all the child relationships.
# 100
# 101 (Child of 100) Cust. 102 (Child of 100)
# 120 (Child of 101) # 121 (Child of 101)
I can accomplish using several queries but would prefer to use arrays.