我的数据库中有一个名为customer的表,其中的数据位于以下列中:id、first_name、last_name和city。就像这样:
customer
id
first_name
last_name
city
现在我需要一个表,其中包含每个Distinct city中customers的编号。SQL应该查询什么?
customers
SQL
f0brbegy1#
您可以使用COUNT聚合函数-
SELECT city, COUNT(ID) FROM customer GROUP BY city;
1条答案
按热度按时间f0brbegy1#
您可以使用COUNT聚合函数-