I have the following table in SQL
Date Time Value
======================================
01/01/2020 00:05:00 10
01/01/2020 10:05:00 20
01/01/2020 20:05:00 35
02/01/2020 00:05:00 10
02/01/2020 10:05:00 15
02/01/2020 20:05:00 35
Want to add a new column to find the difference between the current row value with previous row value for a day like below
Date Time Value New_Value
=============================================
01/01/2020 00:05:00 10 10
01/01/2020 10:05:00 20 10 (20-10)
01/01/2020 20:05:00 35 15 (35-25)
02/01/2020 00:05:00 10 10
02/01/2020 10:05:00 15 5 (15-10)
02/01/2020 20:05:00 35 20 (35-15)
Can this be achieved in SQL without introducing any new columns.