MYSQL實現分組排序並取組內第一條數據

  1、須要實現分組排序而且取組內狀態優先級最高的數據 有一張這樣的數據表, 需求是根據error_type分組而後取status最小的第一條數據html 第一種寫法:post select t.* from ( select e.* from error_record e where e.status > 0 and e.error_type > 0 order by ) t group
相關文章
相關標籤/搜索