sql >> Base de Datos >  >> RDS >> Mysql

Restar una fila de datos de otra en SQL

Esto podría ayudarte (algo).


select a.id, a.length, 
coalesce(a.length - 
    (select b.length from foo b where b.id = a.id + 1), a.length) as diff
from foo a