In response to
"Hey."
by
psilotum
|
I don't have one for ST. Buuuut ... for a database student, ST has one quirk that you may want to know about
Posted by
Beryllium (aka grayman)
Mar 2 '10, 23:01
|
the nesting is accomplished by two fields:
id
and
idparent
If idparent is null, that's a top-level thread.
If idparent is not null, then it's a subthread. All the children of a thread will have idparent set to the id of that parent thread.
For a hypothetical, how do you think you'd go about building a threaded display function, based on that database structure? :)
|
Responses:
|