I have lots of hierarchical lookup values that are stored in a table with the structure
ID INT
Parent Char 6
Key Char 6
Value Varchar 50
The nesting level can be up to 8 levels. I need to create a stored procedure that would return a recordset with all children and accepts the key as a parameter.
Any help is most appreciated.