search

Home  >  Q&A  >  body text

mysql - Interview question: How to print PHP three-level classification into a table for display?

1. The structure of the classification table category is basically composed of three main fields: id, name, and parent_id
2. It needs to be printed and displayed in such a table format

3. How should I write php code? (Allows database table redesign)

漂亮男人漂亮男人2830 days ago757

reply all(6)I'll reply

  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-16 13:03:50

    Already set level 3, what is level 3!? Just connect it yourself twice.

    select c1.name "一级分类", c2.name "二级分类", c3.name "三级分类"
    from category c1
    inner join category c2 on c1.id=c2.parent_id
    inner join category c3 on c2.id=c3.parent_id
    where c1.parent_id=0 #最高级;

    This way you can get the watch you want.

    reply
    0
  • 世界只因有你

    世界只因有你2017-05-16 13:03:50

    php unlimited classification database design

    reply
    0
  • ringa_lee

    ringa_lee2017-05-16 13:03:50

    The database is divided into three tables: first_level, second_level, third_level

    first_level: id, name;
    second_level: id, parent_id, name    // second_level.parent_id = first_level.id
    third_level: id, parent_id, name    // third_level.parent_id = second_level.id

    reply
    0
  • 大家讲道理

    大家讲道理2017-05-16 13:03:50

    First traverse the level 3 array and throw it into the level 2 sub-item array, similar to Infinitus going in reverse

    reply
    0
  • PHP中文网

    PHP中文网2017-05-16 13:03:50

    What you masters want is php code
    In fact, it is a reordering problem. The second and third level classifications included under the first level classification,

    static public function toLevel($cate, $delimiter = '|——', $parent_id = 0, $level = 0) {
    
        $arr = array();
        foreach ($cate as $v) {
            if ($v['parent_id'] == $parent_id) {
                $v['type'] = $level + 1;
                $v['delimiter'] = str_repeat($delimiter, $level);
                $arr[] = $v;
                $arr = array_merge($arr, self::toLevel($cate, $delimiter, $v['cate_id'], $v['type']));
            }
        }
    
        return $arr;
    
    }
    这个是我的无限极分类,你的三级分类和我类似,只要渲染前段的时候注意就好了

    reply
    0
  • phpcn_u1582

    phpcn_u15822017-05-16 13:03:50

    Using recursive queries in SQL

    reply
    0
  • Cancelreply