我想知道哪个国家的哪个客户的订单最多。所以我有一个sales_table
与customer_ids
. 但是country_id
在customer_table
. 所以我需要以某种方式根据国家/地区计数来计算客户......但我不知道该怎么做。一世
我知道如何计算客户。
select count(cust_id)
from sh_sales
以及如何计算国家
select count(country_id)
from sh_customers
但我想根据customer_id
最常用的国家来计算国家sh_sales table
所以它应该以某种方式
select count(country_id)
from sh_customers
where sh_sales.customer ????
我真的需要一些帮助:)