1 Star 0 Fork 0

逸扬/leetcode-hub-mysql

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
lc-1699.test 1.31 KB
Copy Edit Raw Blame History
# $1699. 两人之间的通话次数
# https://leetcode-cn.com/problems/number-of-calls-between-two-persons/
# SQL架构
Create table If Not Exists Calls (from_id int, to_id int, duration int);
Truncate table Calls;
insert into Calls (from_id, to_id, duration) values ('1', '2', '59');
insert into Calls (from_id, to_id, duration) values ('2', '1', '11');
insert into Calls (from_id, to_id, duration) values ('1', '3', '20');
insert into Calls (from_id, to_id, duration) values ('3', '4', '100');
insert into Calls (from_id, to_id, duration) values ('3', '4', '200');
insert into Calls (from_id, to_id, duration) values ('3', '4', '200');
insert into Calls (from_id, to_id, duration) values ('4', '3', '499');
# Write your MySQL query statement below
select
tmp.person1 as person1,
tmp.person2 as person2,
count(*) as call_count,
sum(duration) as total_duration
from
(
select
from_id as person1,
to_id as person2,
duration
from
Calls
where
from_id < to_id
union
all
select
to_id as person1,
from_id as person2,
duration
from
Calls
where
from_id > to_id
) tmp
group by
tmp.person1,
tmp.person2;
# clean-up
drop table Calls;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gdut_yy/leetcode-hub-mysql.git
git@gitee.com:gdut_yy/leetcode-hub-mysql.git
gdut_yy
leetcode-hub-mysql
leetcode-hub-mysql
master

Search