我有一个类别表,我想在其中为帖子指定类别
post_category(cat_id,cat_name,parent_id,cat_count)
cat_id cat_name parent_id cat_count
1 C NULL 300
2 Pointers 1 100
3 Structures 1 200
4 Java NULL 700
5 Exceptions 5 200
6 Threading 5 300
7 Thread Priority 6 200
这里 cat_id 是主键,根元素的父 id 为空,子父 id 是任何有效的 cat_id。我想选择每个父母及其孩子的详细信息。如下
C
Pointers
Structures
Java
Exceptions
Threading
Thread priority