mysql - 重新研究这个问题:php无限分类的子分类如何再排序
PHP中文网
PHP中文网 2017-04-10 15:02:10
0
1
573

第一步。建立无限分类表。

CREATE TABLE IF NOT EXISTS `chi_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `DishCategory_Path` varchar(255) DEFAULT NULL, DishCategory_Sort int(11), `DishCategory_Name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;

第二步。使用以下查询语句

SELECT `id`,`DishCategory_Path`,`DishCategory_Name`,`DishCategory_Sort`,concat(`DishCategory_Path`,'-',id) as fullpath FROM `chi_category` order by fullpath

第三步。看上面的语句结尾时order by fullpath。这个时候大致排序是正确的。
但是DishCategory_Sort这个字段的值没有排序。
因为order by要求当按照多个列进行排序时,只有第一列相同时才使用第二列。但是第一组fullpath是不可能相同的。所以现在不知道DishCategory_Sort这个字段的值如何排序。

我想实现的正确的情况是先按fullpath排序,然后 子分类例如 (川菜、卤菜)应该在上级分类(吃的)之下进行子分类的排序,如图所示 卤菜应该排在川菜前面才对。
那么现在怎么处理呢?各位大神

PHP中文网
PHP中文网

认证0级讲师

reply all (1)
左手右手慢动作

把Dishcategory_sort 放入fullpath和DishCategory_Path

mysql> insert into chi_category values(11, '0-0', 0), (12, '0-0', 0), (13, '0-0-0-11', 2), (14, '0-0-0-11', 1); Query OK, 4 rows affected (0.00 sec) Records: 4 Duplicates: 0 Warnings: 0 mysql> SELECT `id`,`DishCategory_Path`,`DishCategory_Sort`,concat(`DishCategory_ Path`,'-',Dishcategory_sort, '-', id) as fullpath FROM chi_category order by fullpath; +----+-------------------+-------------------+---------------+ | id | DishCategory_Path | DishCategory_Sort | fullpath | +----+-------------------+-------------------+---------------+ | 11 | 0-0 | 0 | 0-0-0-11 | | 14 | 0-0-0-11 | 1 | 0-0-0-11-1-14 | | 13 | 0-0-0-11 | 2 | 0-0-0-11-2-13 | | 12 | 0-0 | 0 | 0-0-0-12 | +----+-------------------+-------------------+---------------+ 4 rows in set (0.00 sec)
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!