数据库面试题:点击日志表——黑产行为
-- 建表
drop table if exists tencent_video_click;
create table if not exists tencent_video_click(
vuid int,
`date` date, -- 点击日期
`time` int comment '点击时间时间戳格式',
platform int default 21
);
select unix_timestamp('2021-03-01 00:00:00'); -- 1614528000
-- 插入造的数据
insert into tencent_video_click values
(1, '2021-03-01', 1614528000, 21),
(1, '2021-03-01', 1614528001, 22),
(1, '2021-03-01', 1614528001, 21),
(2, '2021-03-01', 1614528004, 21),
(3, '2021-03-01', 1614528000, 21),
(2, '2021-03-01', 1614528005, 21),
(3, '2021-03-01', 1614528000, 22),
(4, '2021-03-01', 1614528007, 21),
(4, '2021-03-01', 1614528009, 22),
(4, '2021-03-01', 1614528010, 21);
-- 要求:已知同一用户在移动端连续点击两次时间间隔不高于2秒,则可能产生黑产行为
-- 筛选出21年3月份所有有可能为黑产行为的点击记录
/*
分析:
从同一用户在移动端连续点击两次时间间隔不高于2秒这句话中可以得知 我们需要得到同一用户在移动端上下两次点击时间的数据并进行关联
因此需要使用自连接查询 连接条件是平台一样 用户一样 筛选条件是两者时间相减不高于2秒
然后在此基础上再加上时间的筛选
*/
select t1.*, t2.time as `第二次点击` from tencent_video_click as t1 join tencent_video_click as t2
on t1.vuid=t2.vuid and t1.platform=t2.platform
where t2.time-t1.time <= 2 and t2.time-t1.time > 0 and year(t1.date) = 2021 and month(t1.date) = 3;
/*
vuid date time platform 第二次点击
2021-03-01 1614528000 21 1614528001
2021-03-01 1614528004 21 1614528005
*/
更多关于python培训的问题,欢迎咨询千锋教育在线名师。千锋教育拥有多年IT培训服务经验,采用全程面授高品质、高体验培养模式,拥有国内一体化教学管理及学员服务,助力更多学员实现高薪梦想。