我有这个查询:
select comment_id , section_name , comment , solution_part , display_order from
solution_sections
left join suggested_solution_comments on
solution_sections.solution_section_id = suggested_solution_comments.solution_part and problem_id = 400
order by display_order;
我想要返回的是按 display_order 列排序的所有项目(甚至是 null),如果有些项目具有相同的 display_order,那么这些项目应该按 comment_id 排序
有没有办法做到这一点?
谢谢!