To get the avg difference in seconds you can do
SELECT owner,
avg(TIMESTAMPDIFF(second, created_on, last_modified))
FROM tasks
GROUP BY owner
CLICK HERE to find out more related problems solutions.
To get the avg difference in seconds you can do
SELECT owner,
avg(TIMESTAMPDIFF(second, created_on, last_modified))
FROM tasks
GROUP BY owner
CLICK HERE to find out more related problems solutions.