T
Tem
I have a table that looks like this. Each row is a reply or a topic when
IsAReplyTo = 0
I need to write a query that pulls all rows of a hierarchy of a given ID
Table Forum
ID IsAReplyTo
4 0
9 4
27 4
63 27
73 0
82 63
given @ID = 63 it should return ID 4,9,27,82
Im not sure where to go from here.
Select * from Forum where IsAReplyTo = @ID
can it be done with a single query?
Tem
IsAReplyTo = 0
I need to write a query that pulls all rows of a hierarchy of a given ID
Table Forum
ID IsAReplyTo
4 0
9 4
27 4
63 27
73 0
82 63
given @ID = 63 it should return ID 4,9,27,82
Im not sure where to go from here.
Select * from Forum where IsAReplyTo = @ID
can it be done with a single query?
Tem