Я пытаюсь найти общее время, затраченное на человека, и дать ответ в количестве минут, потраченных с использованием SQL. Page_start_time - это тип данных времени. Данные показаны ниже:
This is the visitors table. I need to find the total time taken using the page_start_time field per USER_ID.
I tried the following code:
select sum(datediff(minute, 0, page_start_time)) as Totalnumberofminutesspent, User_id
from visitors
GROUP BY user_id
ORDER BY Totalnumberofminutesspent DESC;
I got the following answer:
ответ
Когда я проверял вручную, ответ неверный.