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.
データベース テーブルをチェックし、個別の値とそのカウントを取得するには、MySQL クエリを作成する必要があります。
select distinct(fruits), count(distinct(fruits)) from table;
これで十分ですか?
使ってみませんかgroup by
group by
select fruits, count(fruits) as fc from table group by fruits order by fc desc;