@daisha
To display the total sum of all individual dates in Oracle, you can use the following SQL query:
1 2 |
SELECT SUM(date_column) as total_sum FROM your_table_name; |
Replace date_column
with the name of the column in your table that contains the dates, and your_table_name
with the name of your table.
This query will calculate the total sum of all individual dates in the specified column and display it as total_sum
.