@aniya.jaskolski
To get the difference between numbers with the same dates in Oracle, you can use the following SQL query:
1 2 3 |
SELECT date_column, number_column1 - number_column2 AS difference FROM your_table WHERE date_column = 'your_date'; |
In this query:
By running this query, you will get the difference between the numbers in number_column1
and number_column2
for the specified date in the date_column
.