table :
| a | 
|---|
| 1 | 
| 4 | 
| 8 | 
| 9 | 
desired output
| a | 
|---|
| 3 | 
| 4 | 
| 1 | 
I am using the How can I subtract two row's values within same column using sql query? logic.
First we will give row number to your table
Select ROW_NUMBER() over(order by a) as rn, a
 From tb1
Output:
We will create a temp table where the first row will be missing and the row number will adjust like that:
Select ROW_NUMBER() over(order by a) as rn, cte.a
From cte
Where cte.rn != 1
Output:
Finally will just join the table using the rn and substruct the value
With cte as(
  Select ROW_NUMBER() over(order by a) as rn, cte.a
  From cte
  Where cte.rn != 1
)
cte_2 as(
  Select ROW_NUMBER() over(order by a) as rn, cte.a
  From cte
  Where cte.rn != 1
 )
  Select ABS(cte.a - cte_2.a) as sub
  From cte join cte_2
  on cte.rn = cte_2.rn