SQL Tutorial
SQL Database
SQL Table
SQL Select
SQL Order By
SQL Insert
SQL Update
SQL Delete
Difference
SQL Injection
SQL String Functions
Miscl
- SQL Formatter
- SQL group by
- SQL add/drop/update column operation
- SQL CAST Function
- SQL Comments
- SQL CONCAT Function
- CTE (Common Table Expression)SQL
- How to use distinct in SQL?
- Joining Three or More Tables in SQL
- What is Web SQL?
- How to create functions in SQL?
- How to run SQL Script?
- How to Delete Duplicate Rows in SQL?
- Nth Highest salary
- 12 Codd's Rules
- SQL EXCEPT
- Types of SQL JOIN
- Change datatype of column in SQL
- SQL Auto Increment
- SQL Like
- Commit and Rollback in SQL
- SQL Concatenate
- SQL get month from the date
- Savepoint in SQL
- SQL ORDER BY DATE
- TIME Datatype in SQL
- SQL BETWEEN
- CRUD Operations in SQL
- SQL INDEX
- Scalar Functions in SQL
- SET Operators in SQL
- Types of SQL Commands
- TCL Commands in SQL
- SQL Subquery
- SQL View
- Constraints in SQL
- Pattern Matching in SQL
- SQL Date Functions
- DDL Commands in SQL
- DML Commands in SQL
- SQL CASE
- SQL Inner Join
- SQL IN Operator
- Check Constraint in SQL
- SQL CLAUSES
- SQL LOGICAL OPERATORS
- Delete Column from Table
- Add Column in the Table
- Delete one row in SQL
- Change the Column Value
- How to Add Foreign Key in SQL
- Add a Primary Key
- Insert One or More rows
- How to Use LIKE in SQL
- Cursor in SQL
- Difference Between DROP and Truncate
- SQL Comparison Operators
- SQL COUNT WHERE
- SQL SELECT MIN
- SQL Stored Procedure
- SQL SELECT AVG
- SQL SELECT MAX
- SQL ADD COLUMN
- How to use Auto-Increment in SQL
- SQL Languages
- SQL Arithmetic Operators
- How to Use GROUP BY in SQL
- How to Use ORDER BY in SQL
- Trigger in SQL
- What is Race Condition
- SQL COUNT DISTINCT
PL/SQL Tutorial
Sql Interview Question
SQl Quiz
SQL SELECT SUM
It is also known as SQL SUM() function. It is used in a SQL query to return summed value of an expression.
Let's see the Syntax for the select sum function:
FROM tables
WHERE conditions;
expression may be numeric field or formula.
This would produce the following result.
ID | EMPLOYEE_NAME | SALARY |
---|---|---|
1 | JACK REACHER | 32000 |
2 | PADMA MAHESHWARI | 22000 |
3 | JOE PETRA | 41000 |
4 | AMBUJ AGRAWAL | 21000 |
After using this SQL SELECT SUM example, it will produce the result containing the sum of the salary greater than 20000.
Total salary: 116,000
SQL SUM EXAMPLE with single field:
If you want to know how the combined total salary of all employee whose salary is above 20000 per month.
FROM employees
WHERE salary > 20000;
In this example, you will find the expression as "Total Salary" when the result set is returned.
SQL SUM EXAMPLE with SQL DISTINCT:
You can also use SQL DISTINCT clause with SQL SUM function.
FROM employees
WHERE salary > 20000;
SQL SUM EXAMPLE with SQL GROUP BY:
Sometimes there is a need to use the SQL GROUP BY statement with the SQL SUM function.
For example, we could also use the SQL SUM function to return the name of department and the total sales related to department.
FROM order_details
GROUP BY department;
Let us take a table named order_details
ID | DEPARTMENT | DATE | DAILY SALES |
---|---|---|---|
1 | Mechanical | 2012-08-13 | 360 |
2 | Electrical | 2012-08-13 | 100 |
2 | Electrical | 2012-08-14 | 110 |
3 | Electronics | 2012-08-13 | 150 |
3 | Electronics | 2012-08-14 | 170 |
After using the SQL GROUP BY statement with SUM, you will find the following result.
DEPARTMENT | SUM(DAILY SALES) |
---|---|
Mechanical | 360 |
Electrical | 210 |
electronics | 320 |