91-9990449935 0120-4256464 |
SQL SELECT SUMIt 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: expression may be numeric field or formula. This would produce the following result.
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. 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. 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. Let us take a table named order_details
After using the SQL GROUP BY statement with SUM, you will find the following result.
Next TopicSQL SELECT NULL
|