You can add a numeric ID field to your table, number the records as 1,2,3,.. to 8 in the ID field and run this query:-
SELECT a.Numbers, Nz(a.Numbers- b.Numbers)+0 AS Difference
FROM [TableName] AS a LEFT JOIN [TableName] AS b ON a.ID-1 = b.ID;
Just curious ... but why do you have a table with...