0

我有一个包含 12,000 条具有各种属性的记录的数据库。其中之一是weather_condition(整数)。

此查询将按降序返回每个具有天气类型的车祸。

SELECT weather_condition FROM nyccrash ORDER BY weather_condition DESC;

我特别想要的是显示与每个 weather_condition 相关的事故数量。有 7 个条件:0 到 7。

例如:

Condition | Count
0         | 452
1         | 558
2         | 1242
3         | 92
...       | ...
4

1 回答 1

3

这个怎么样:

SELECT weather_condition, COUNT(weather_condition) AS Count 
FROM nyccrash
GROUP BY weather_condition
ORDER BY weather_condition DESC ;
于 2012-04-05T02:01:39.280 回答