DEBUG - DEBUG - DEBUG
DEBUG - DEBUG - DEBUG
DEBUG - DEBUG - DEBUG

Vittorio Di Giulio

Vittorio Di Giulio

Vittorio Di Giulio

Statistiche Globali


15

Punti Totali

3.75

Media Punti/Partita

6

Hit x2

1

Hit x3

14%

% Hit x3

0

Autohit

4

Presenze

0

Ammonizioni

0

Espulsioni

Dati Storici


Squadre in cui ha militato

                Total Queries: 13
        Total Time: 0.37376928329468
    Array
(
    [0] => Array
        (
            [query] => select * from setting where property = 'datetime_timezone'
            [start] => 1776072931.4202
            [end] => 1776072931.4257
            [time] => 0.0055620670318604
        )

    [1] => Array
        (
            [query] => select player.*,player_to_team.team_id,player_to_team.number,player_to_team.start,player_to_team.end from player
        left join player_to_team on (player.player_id = player_to_team.player_id) where deleted = '0' AND player.player_id = '123' ORDER BY lastname,firstname ASC
            [start] => 1776072931.4303
            [end] => 1776072931.4353
            [time] => 0.0049910545349121
        )

    [2] => Array
        (
            [query] => select team.*,team_to_club.club_id,team_to_club.start,team_to_club.end from team
        left join team_to_club on (team.team_id = team_to_club.team_id) where deleted = '0' AND (start = 0 OR start <= 1776072931 OR start >= 1776072931) AND (end >= 1776072931 OR end = 0) AND (start < 1776072931) ORDER BY name ASC
            [start] => 1776072931.4356
            [end] => 1776072931.4365
            [time] => 0.00089311599731445
        )

    [3] => Array
        (
            [query] => select * from player_to_team WHERE player_id = '123'
            [start] => 1776072931.4367
            [end] => 1776072931.4389
            [time] => 0.0022270679473877
        )

    [4] => Array
        (
            [query] => select * from matches where (home_team_id = '19' OR visitor_team_id = '19') AND date <= '1665481460' ORDER BY 
        case when description in('', '') then 'ZZZZZZZZZZZZZZZZZZZZZZZZZZZ' else description end, 
        round_id+0,
        date+0,
        match_id 
        ASC LIMIT 0,1
            [start] => 1776072931.4391
            [end] => 1776072931.4473
            [time] => 0.0081930160522461
        )

    [5] => Array
        (
            [query] => select * from match_time where match_id in (2240) order by id ASC
            [start] => 1776072931.4474
            [end] => 1776072931.455
            [time] => 0.0076339244842529
        )

    [6] => Array
        (
            [query] => SELECT * FROM match_data where match_id IN (2240)
            [start] => 1776072931.4551
            [end] => 1776072931.4979
            [time] => 0.042823076248169
        )

    [7] => Array
        (
            [query] => SELECT player_id, COUNT(player_id) as attendance FROM match_roster LEFT JOIN matches ON (match_roster.match_id = matches.match_id)  where player_id = '123' AND match_roster.match_id NOT IN (select match_id from matches where championship_id IN (select championship_id from championship where show_player_ranking = '0')) GROUP BY player_id
            [start] => 1776072931.4985
            [end] => 1776072931.5117
            [time] => 0.013197898864746
        )

    [8] => Array
        (
            [query] => SELECT player_id,  
        SUM(
            CASE 
              WHEN point != 'A' THEN point  
            END 
        ) as total,
        
        SUM(
            CASE 
              WHEN point = 'A' THEN 1 
              WHEN point != 'A' THEN 0 
            END 
        ) as autohit,
    
        SUM(
            CASE 
              WHEN point = '3' THEN 1
              WHEN point != '3' THEN 0  
            END 
        ) as defense,
    
        SUM(
            CASE 
              WHEN point = '2' THEN 1 
              WHEN point != '2' THEN 0 
            END 
        ) as attack,
            
        SUM(
            CASE 
              WHEN point = 'P' THEN 1 
              WHEN point != 'P' THEN 0 
            END 
        ) as admonitions,
        
        SUM(
            CASE 
              WHEN point = 'E' THEN 1 
              WHEN point != 'E' THEN 0 
            END 
        ) as expulsions
                
        FROM point 
        LEFT JOIN matches ON (point.match_id = matches.match_id) where player_id = '123' AND point.match_id NOT IN (select match_id from matches where championship_id IN (select championship_id from championship where show_player_ranking = '0')) GROUP BY point.player_id 
            [start] => 1776072931.5117
            [end] => 1776072931.6072
            [time] => 0.095493078231812
        )

    [9] => Array
        (
            [query] => SELECT player_id, COUNT(player_id) as attendance, CASE 
              WHEN from_unixtime(matches.date, "%Y-%m-%d %H:%i") <= CONCAT(from_unixtime(matches.date, "%Y"), "-08-31" , '23:59:59') THEN CONCAT(from_unixtime(matches.date, "%Y")-1, '-', from_unixtime(matches.date, "%Y"))
              ELSE CONCAT(from_unixtime(matches.date, "%Y"), '-', from_unixtime(matches.date, "%Y")+1)
            END as period  FROM match_roster LEFT JOIN matches ON (match_roster.match_id = matches.match_id)  where player_id = '123' AND team_id = '19' AND match_roster.match_id NOT IN (select match_id from matches where championship_id IN (select championship_id from championship where show_player_ranking = '0')) GROUP BY player_id, period
            [start] => 1776072931.6074
            [end] => 1776072931.6212
            [time] => 0.013816118240356
        )

    [10] => Array
        (
            [query] => SELECT player_id, CASE 
              WHEN from_unixtime(matches.date, "%Y-%m-%d %H:%i") <= CONCAT(from_unixtime(matches.date, "%Y"), "-08-31" , '23:59:59') THEN CONCAT(from_unixtime(matches.date, "%Y")-1, '-', from_unixtime(matches.date, "%Y"))
              ELSE CONCAT(from_unixtime(matches.date, "%Y"), '-', from_unixtime(matches.date, "%Y")+1)
            END as period,  
        SUM(
            CASE 
              WHEN point != 'A' THEN point  
            END 
        ) as total,
        
        SUM(
            CASE 
              WHEN point = 'A' THEN 1 
              WHEN point != 'A' THEN 0 
            END 
        ) as autohit,
    
        SUM(
            CASE 
              WHEN point = '3' THEN 1
              WHEN point != '3' THEN 0  
            END 
        ) as defense,
    
        SUM(
            CASE 
              WHEN point = '2' THEN 1 
              WHEN point != '2' THEN 0 
            END 
        ) as attack,
            
        SUM(
            CASE 
              WHEN point = 'P' THEN 1 
              WHEN point != 'P' THEN 0 
            END 
        ) as admonitions,
        
        SUM(
            CASE 
              WHEN point = 'E' THEN 1 
              WHEN point != 'E' THEN 0 
            END 
        ) as expulsions
                
        FROM point 
        LEFT JOIN matches ON (point.match_id = matches.match_id) where player_id = '123' AND point.match_id NOT IN (select match_id from matches where championship_id IN (select championship_id from championship where show_player_ranking = '0')) AND team_id = '19' GROUP BY point.player_id, period  ORDER BY period ASC; 
            [start] => 1776072931.6212
            [end] => 1776072931.7976
            [time] => 0.176344871521
        )

    [11] => Array
        (
            [query] => select * from championship ORDER BY YEAR(FROM_UNIXTIME(date)) DESC, name ASC
            [start] => 1776072931.8018
            [end] => 1776072931.8041
            [time] => 0.0023429393768311
        )

    [12] => Array
        (
            [query] => select * from match_group where deleted = '0' ORDER BY from_unixtime(date, '%Y') DESC,name,match_group_id ASC
            [start] => 1776072931.8049
            [end] => 1776072931.8052
            [time] => 0.00025105476379395
        )

)