my code is as follow...
$sql="
select *
from ads
where category = '$category_id'
and action = '1'
order
by feature desc";
在这个阶段,只有顶级产品才有最大特色。现在它应该根据他们的id desc显示其余的产品。 我要在此查询中添加什么语法请建议。
答案 0 :(得分:2)
select *
from ads
where category = '$category_id'
and action = '1'
order by feature desc, id desc
答案 1 :(得分:0)
如果您想以另一种方式对项目的一部分和第二部分进行排序,则必须进行两次查询 - 一次使用按功能desc排序,第二次使用 order by id desc