mysql 从sql中的customer表统计每个Distinct city中的客户数

hc2pp10m  于 2023-01-08  发布在  Mysql
关注(0)|答案(1)|浏览(142)

我的数据库中有一个名为customer的表,其中的数据位于以下列中:idfirst_namelast_namecity
就像这样:

现在我需要一个表,其中包含每个Distinct citycustomers的编号。SQL应该查询什么?

f0brbegy

f0brbegy1#

您可以使用COUNT聚合函数-

SELECT city, COUNT(ID)
  FROM customer
 GROUP BY city;

相关问题