Medium之1501.可以放心投资的国家**

表 Person:

Column NameType
idint
namevarchar
phone_numbervarchar

id 是该表主键.
该表每一行包含一个人的名字和电话号码.
电话号码的格式是:‘xxx-yyyyyyy’, 其中xxx是国家码(3个字符), yyyyyyy是电话号码(7个字符), x和y都表示数字. 同时, 国家码和电话号码都可以包含前导0.

表 Country:

Column NameType
namevarchar
country_codevarchar

country_code是该表主键.
该表每一行包含国家名和国家码. country_code的格式是’xxx’, x是数字.

表 Calls:

Column NameType
caller_idint
callee_idint
durationint

该表无主键, 可能包含重复行.
每一行包含呼叫方id, 被呼叫方id和以分钟为单位的通话时长. caller_id != callee_id
一家电信公司想要投资新的国家. 该公司想要投资的国家是: 该国的平均通话时长要严格地大于全球平均通话时长.

问题

写一段 SQL, 找到所有该公司可以投资的国家.

返回的结果表没有顺序要求.

示例

Person 表:

idnamephone_number
3Jonathan051-1234567
12Elvis051-7654321
1Moncef212-1234567
2Maroua212-6523651
7Meir972-1234567
9Rachel972-0011100

Country 表:

namecountry_code
Peru051
Israel972
Morocco212
Germany049
Ethiopia251

Calls 表:

caller_idcallee_idduration
1933
294
1259
312102
312330
1235
7913
713
971
177

Result 表:

country
Peru

国家Peru的平均通话时长是 (102 + 102 + 330 + 330 + 5 + 5) / 6 = 145.666667
国家Israel的平均通话时长是 (33 + 4 + 13 + 13 + 3 + 1 + 1 + 7) / 8 = 9.37500
国家Morocco的平均通话时长是 (33 + 4 + 59 + 59 + 3 + 7) / 6 = 27.5000
全球平均通话时长 = (2 * (33 + 4 + 59 + 102 + 330 + 5 + 13 + 3 + 1 + 7)) / 20 = 55.70000
所以, Peru是唯一的平均通话时长大于全球平均通话时长的国家, 也是唯一的推荐投资的国家.

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/countries-you-can-safely-invest-in
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

解答

法一:交叉联结
select co.name as country
from calls ca,country co,person p
where (p.id = ca.caller_id or p.id= ca.callee_id) and co.country_code=left(p.phone_number,3)
group by co.country_code
having avg(duration)>(select avg(duration) from calls)

(p.id = ca.caller_id or p.id= ca.callee_id) 一定要加括号,不然结果不对。

法二:UNION+LEFT JOIN
select c.name as country
from 
(   select caller_id id,duration from calls
    union 
    select callee_id id,duration from calls
) t left join person p on t.id = p.id 
left join country c on c.country_code= left(p.phone_number,3)
group by c.country_code
having avg(duration)>(select avg(duration) from calls)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值