WITH t1 AS ( SELECT a.video_id, b.video_id AS user_watch_video_id, b.start_time, b.end_time, a.duration, substring(b.end_time,1,4) as watch_year, TIMESTAMPDIFF(SECOND, start_time, end_time) AS watc...