Sum of hours obtained through a query in mysql

0
SELECT
    TIMEDIFF(
        atendimento_ticket.close_atendimento,
        atendimento_ticket.open_atendimento
    ) AS duracao
FROM
    atendimento_ticket
WHERE
    id_tec = '$id_tec'
    
asked by anonymous 27.12.2017 / 20:53

0 answers