1
I have the following fields:
I would like to format the result of my following Query:
SELECT TIMEDIFF(primeiraSaida, primeiraEntrada) + TIMEDIFF(segundaSaida, segundaEntrada)
FROM pontoentradasaida
WHERE primeiraEntrada BETWEEN '2018-09-13' AND '2018-09-14';
Where the exit is being:
But I’d like you to leave: H:mm:ss or 8:59:68s or 9:00:08
Thank you in advance
I tried, but the value is returning null
– Marcos Correia