Mysql
 sql >> Base de données >  >> RDS >> Mysql

Soustraire une ligne de données d'une autre en SQL

Cela pourrait vous aider (un peu).


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