SS
Size: a a a
SS
AI
select first_team_id as team_id
from iss_matches
where iss_matches.id in
(select distinct match_id
from iss_video_uploads
where iss_video_uploads.user_id = 1
and iss_video_uploads.match_id is not null)
UNION
select second_team_id as team_id
from iss_matches
where iss_matches.id in
(select distinct match_id
from iss_video_uploads
where iss_video_uploads.user_id = 1
and iss_video_uploads.match_id is not null)
AI
OA
OA
SS
AI
SS
AI
КК
SS
SS
КК
КК
ES
PP
ES
AP
select first_team_id as team_id, second_team_id as team_id
from iss_matches
where iss_matches.id in
(select distinct match_id
from iss_video_uploads
where
iss_video_uploads.user_id =
1and iss_video_uploads.match_id is not null)
AI
AP