How to display the total sum of all individual dates in oracle?

Member

by daisha , in category: MySQL , 7 months ago

How to display the total sum of all individual dates in oracle?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by ryan.murray , 7 months ago

@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.