我有 2 张桌子SALESREP
,CUSTOMER
我需要找出哪个销售代表拥有最多的客户
我有以下代码:
select rep_lname, count(cust_num)
from customer inner join salesrep
on customer.REP_NUM = SALESREP.REP_NUM
group by rep_lname
这为我提供了每个销售代表拥有的客户数量的所有行,而我只需要拥有最多客户的行。
如何找到具有 MAX num of customers 的行?