Mysql
 sql >> Database >  >> RDS >> Mysql

Sottrarre una riga di dati da un'altra in SQL

Questo potrebbe aiutarti (in qualche modo).


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