我想首先展示特色产品,然后应该通过id desc显示其余的产品订单

时间:2015-12-16 10:59:22

标签: php mysql

my code is as follow...


$sql="
select * 
  from ads 
 where category = '$category_id' 
   and action = '1' 
 order 
    by feature desc";

在这个阶段,只有顶级产品才有最大特色。现在它应该根据他们的id desc显示其余的产品。 我要在此查询中添加什么语法请建议。

2 个答案:

答案 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