针对置顶(定为a)、加精(定为b)用一个字段保存暂且命名为c_state,类型为varchar,长度就自己定义咯。
当两个同时选中时肯定
“[置顶][精品]”排第一,
[置顶]排第二,
[精品]排第三,
或许按照我们惯常的思维是
$sql="select * from tablename order by c_state desc";
这样排列的顺序却不是我们想要的,因为结果为b,ab,a(记住这里参照上面对置顶、加精的定义分别为a,b),如果以升序asc来说更不行了。
方法一:$sql="select *,instr(c_state,',') as state1,(c_state=1) as state2 from tablename order by state1 desc,state2 desc,c_state desc,c_date desc";运行结果OK。
方法二:$sql="select *,locate(',',c_state) as state1,(c_state=1) as state2 from tablename order by state1 desc,state2 desc,c_state desc,c_date desc";运行结果OK。