标签: sql mysql
我有一个庞大的mysql数据库表,其中一列包含1到9之间的值 我可以提供什么查询,以便我可以在数据库的该列中获得1s,2s和3s ... 9s的计数?
答案 0 :(得分:3)
select column, count(*) from table group by column
答案 1 :(得分:2)
您使用分组:
select TheValue, count(*) from TheTable group by TheValue order by TheValue