Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
、およびstudentの 3 つのフィールドを持つテーブルを作成します。フィールドには または のいずれかが含まれます。私の質問は、単一のクエリを使用しての数と数を数える方法ですか?namenumberresultresultPassFailpassfail
student
name
number
result
Pass
Fail
pass
fail
select t.result, count(1) from mytable t group by t.result ;