クエリのヘルプを探しています
ここに次のテーブルデータがあります
Name Runs Status
Ram 50 out
Ram 103 not out
Krish 51 out
Sam 15 out
Ram 15 out
Krish 78 not out
単一のクエリで次の結果が得られることを期待しています
Name Total >100 >50&<100 TotalTimes Notout
Ram 168 1 1 3 1
Sam 15 0 0 1 0
Krish 129 0 2 2 1
Group By 機能の助けを借りて、Totaltimes の合計を取得するためのクエリを作成することができました。
これが私が思いついたクエリです
select Name, sum(Runs) as total, count(*) as totalTimes
from tempTable
where classID IN (Select classID from upcoming_Clases where classes_id=175)
group by Name order by total desc
Mysql データベースを使用しています