如题, 本来我是根据时间查询,两个地方显示,但是 条件稍微不同, 由于 多条数据 的 时间可能相同,所以我想根据别的字段再倒序 排列 该如何操作
------解决方案--------------------
你试试这个多列混合排序:
select <column_one>, <column_two>
from <table_name>
order by <column_one> desc, <column_two> asc;
------解决方案--------------------
时间asc或默认,别的字段desc;