Seria útil se você preparasse uma tabela de amostra e inserções de dados.
Leia este link para saber por que é tão importante se você deseja obter ajuda:http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html
Desta vez eu criei para você, clique neste link: http://sqlfiddle.com/#!2/9719a/2
E tente esta consulta (você encontrará esta consulta junto com dados de exemplo no link acima):
select alias1.*,
timestampdiff( second, previous_viewed_at, viewed_at )
as time_between_viewings
from (
select alias.*,
(
select viewed_at from (
select
( select count(*) from asset_usages y
where x.asset_id = y.asset_id
and y.viewed_at < x.viewed_at
) as rn,
x.*
from asset_usages x
) xyz
where xyz.asset_id = alias.asset_id
and xyz.rn = alias.rn - 1
) previous_viewed_at
from (
select
( select count(*) from asset_usages y
where x.asset_id = y.asset_id
and y.viewed_at < x.viewed_at
) as rn,
x.*
from asset_usages x
) alias
) alias1;