0.0075 | SELECT c.*, c.stadium as real_stadium, 2021 AS year, dt1.id AS dteam1_id, dt1.nameShow as team1_name, dt1.basealias AS team1_basealias, dt1.fullName as team1_fullName, dt1.color1 AS team1_color1, dt1.seats, dt1.size, dt1.yearBuilt, dt2.id AS dteam2_id, dt2.nameShow as team2_name, dt2.basealias AS team2_basealias, dt2.fullName as team2_fullName, dt2.color1 AS team2_color1, t1.name as team1_Oname, t2.name as team2_Oname, s.id as stadium_id, rs.teamId as stadium_team_id, s.name AS stadium_name, s.size AS stadium_size, s.seats AS stadium_seats, s.yearBuilt AS stadium_yearBuilt, dt1.managerNow AS manager1, dt2.managerNow AS manager2 FROM calendars2021 AS c
INNER JOIN teams AS t1 ON c.team1 = t1.id
INNER JOIN datateams AS dt1 ON t1.teamId = dt1.id
INNER JOIN teams AS t2 ON c.team2 = t2.id
INNER JOIN datateams AS dt2 ON t2.teamId = dt2.id
LEFT JOIN futbol.rel_stadiums as rs ON rs.teamId=dt1.id AND rs.active=1
LEFT JOIN datastadiums AS s ON s.id = c.stadium
WHERE c.extra != 1 AND dt1.basealias = 'Granada' AND dt2.basealias = 'Real-Sociedad' |
0.0032 | SELECT
c.*,
2021 AS year,
dt1.id AS dteam1_id,
dt1.nameShow AS team1_name,
dt1.basealias AS team1_basealias,
dt1.fullName AS team1_fullName,
dt1.color1 AS team1_color1,
dt1.seats,
dt1.size,
dt1.yearBuilt,
dt2.id AS dteam2_id,
dt2.nameShow AS team2_name,
dt2.basealias AS team2_basealias,
dt2.fullName AS team2_fullName,
dt2.color1 AS team2_color1,
t1.name AS team1_Oname,
t2.name AS team2_Oname,
s.id AS stadium_id,
dt1.id AS stadium_team_id,
s.name AS stadium_name,
s.size AS stadium_size,
s.seats AS stadium_seats,
s.yearBuilt AS stadium_yearBuilt,
dt1.managerNow AS manager1,
dt2.managerNow AS manager2
FROM
calendars2021 AS c
INNER JOIN teams AS t1 ON c.team1 = t1.id
INNER JOIN datateams AS dt1 ON t1.teamId = dt1.id
INNER JOIN teams AS t2 ON c.team2 = t2.id
INNER JOIN datateams AS dt2 ON t2.teamId = dt2.id
LEFT JOIN datastadiums AS s ON s.id = c.stadium
WHERE c.extra != 1
AND dt1.basealias = 'Granada'
AND dt2.basealias = 'Real-Sociedad' |
0.0018 | SELECT data1 FROM stats2021 t WHERE league_id = 57041 AND teamId = 6380744 and type = 33 |
0.0018 | SELECT data1 FROM stats2021 t WHERE league_id = 57041 AND teamId = 6380747 and type = 33 |
0.0021 | SELECT p.*
FROM `videos` as p INNER JOIN `rel_videos` as rp ON p.id = rp.id_video WHERE rp.id_content = '89803' and rp.type = 2021 and p.revised = 1 GROUP BY p.id ORDER BY p.id DESC LIMIT 0, 16 |
0.0018 | SELECT iframe, title FROM futbol.match_videos WHERE matchId = 89803 AND year = 2021 AND channel = 'Footters' LIMIT 1 |
0.0020 | SELECT iframe, title FROM futbol.match_videos WHERE matchId = 89803 AND year = 2021 AND channel = 'Footters' LIMIT 1 |
0.0023 | SELECT c.team1, c.team2,c.extra,c.datateam1,c.datateam2, c.shedule,c.id, c.r1, c.r2, c.round, dt1.nameShow as team1_name, dt2.nameShow as team2_name, dt1.basealias as basealias1, dt2.basealias as basealias2,c.comments,c.league_id FROM `calendars2021` as c INNER JOIN teams t1 ON t1.id = c.team1 AND t1.league_id = c.league_id INNER JOIN teams t2 ON t2.id = c.team2 AND t2.league_id = c.league_id INNER JOIN datateams as dt1 ON dt1.id = t1.teamId INNER JOIN datateams as dt2 ON dt2.id = t2.teamId WHERE c.`league_id` = 57041 AND c.`round` = 27 ORDER BY shedule ASC LIMIT 12 |
0.0027 | SELECT t.*,dt.nameShow,dt.basealias,dt.id as teamId,(cast(t.gf as signed) - cast(t.ga as signed) + 100) as diff,team.teamId FROM `tables2021` as t
INNER JOIN teams as team ON team.id = t.team
INNER JOIN datateams as dt ON team.teamId = dt.id
WHERE t.league_id = 57041
AND t.round = 27 ORDER BY team.conference ASC,t.position ASC,t.points DESC,t.priority DESC, diff DESC, t.gf DESC, dt.nameShow ASC |
0.0023 | SELECT t.*,dt.nameShow,dt.basealias,dt.id as teamId,(cast(t.gf as signed) - cast(t.ga as signed) + 100) as diff,team.teamId FROM `tables2021` as t
INNER JOIN teams as team ON team.id = t.team
INNER JOIN datateams as dt ON team.teamId = dt.id
WHERE t.league_id = 57041
AND t.round = 38 ORDER BY team.conference ASC,t.position ASC,t.points DESC,t.priority DESC, diff DESC, t.gf DESC, dt.nameShow ASC |
0.0019 | SELECT `id`, `text` FROM `matchs_news_keys` WHERE `match_id`='89803' AND `active` = 1 AND year = 2021 |
0.0227 | SELECT mp.`player_id`, p.`nick`, p.`name`, p.`last_name`, mp.`team`, p.role, p.alias, relp.squadNumber as num, p.CountryCode
FROM `matchs_players_called` AS mp INNER JOIN `dataplayers` AS p ON mp.`player_id` = p.`id`
INNER JOIN rel_players AS relp ON relp.player_id=p.id AND relp.league_id='57041' AND relp.team_id=6380744
WHERE relp.in_squad=1 and mp.`match_id` = '89803' AND mp.year='2021'
ORDER BY mp.`team` ASC, p.`role` ASC |
0.0247 | SELECT mp.`player_id`, p.`nick`, p.`name`, p.`last_name`, mp.`team`, p.role, p.alias, relp.squadNumber as num, p.CountryCode
FROM `matchs_players_called` AS mp INNER JOIN `dataplayers` AS p ON mp.`player_id` = p.`id`
INNER JOIN rel_players AS relp ON relp.player_id=p.id AND relp.league_id='57041' AND relp.team_id=6380747
WHERE relp.in_squad=1 and mp.`match_id` = '89803' AND mp.year='2021'
ORDER BY mp.`team` ASC, p.`role` ASC |
0.0017 | SELECT total FROM bs_rel_resume_items WHERE ln = 'es' AND itemId=89803 AND extraId = 57041 AND type_rel = 4 |
0.0040 | SELECT /*115 bs_news_model*/ n.id, n.author_id, n.headline, n.external_headline, n.live_headline, n.creation_date, n.update_date, n.pub_date, n.alias, n.subheadline, n.teaser, n.media, n.tags, n.views, n.screens, n.clicks, n.relations, n.comments, n.power_cover, n.cover_points,u.name as user_name FROM bs_news n INNER JOIN bs_editors u ON u.id = n.author_id AND u.ln = 'es' INNER JOIN bs_news_rel rel ON rel.newId = n.id AND rel.type_rel = 4 AND rel.typeId = 89803 AND rel.extraId = 57041 WHERE n.status = 1 AND n.ln='es' AND n.creation_date>'2021-01-13 16:15:00' AND n.creation_date<'2021-05-13 17:15:00' GROUP BY n.id ORDER BY n.cover_points DESC,n.creation_date DESC LIMIT 5 |
0.0022 | SELECT * FROM futbol.calendars_lineups WHERE id = 89803 AND league_id = 57041 AND year = 2021 |