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

Member

by daisha , in category: MySQL , a year ago

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

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by ryan.murray , a year 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.

Related Threads:

How to get total sum of orders by a user in woocommerce?
How to find the sum that is less than 1000 in oracle?
How to get sum of count of the columns in oracle?
How to combine dates in oracle?
How to convert partial dates in oracle sql?
How to extract no. of days between 2 dates in oracle sql?