这个查询应该怎么做???
有很多的内容,每个内容都属于一个唯一的父类,实现是是按照每个父类所含内容的多少进行排序父类。
用的是smarty
这个是现在的代码
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$db->Query("tag_list","select * from `tag` order by `id` desc limit 20"); while($tag_arr = $db->GetArray("tag_list")){ $tag_list[] = $tag_arr; } $qf->assign('tag_list',$tag_list);