I need datetime values, but I don't know how to do this.
I have a table:

And my request:
SELECT SUM(h.dtplay) AS Time FROM tblhistory AS h, tblgame AS g WHERE h.idgame = g.id AND g.description = gameName;
But, when I run this query, my result is:

Why is this wrong?
EDIT
I am changing the format from date and time in my table:

So, I need to sum the time values.
EDIT 2
Correct request:
SELECT SEC_TO_TIME(SUM(TIME_TO_SEC(h.DtPlay))) AS Time FROM tblhistory AS h, tblgame AS g WHERE h.idgame = g.id AND g.description = gameName;
Thanks for @Newbee Dev and @EhsanT :)
source share