Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • SQL sum function

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 217
    Comment on it

    Sum ( ) , it is a function which return the aggregate sum of any expression , like salary of multiple employee , sum of population in any particular area etc .
    Syntax :

    1. select sum ( Expression ) from student where clause ; // expression can be numeric value or any mathematical formula

    Example :
    Table name : Employee_Info

    1. Employee_name Employee_Age Employee _Salary
    2. Mukesh 23 100000
    3. Ayush 24 200000
    4. Ishan 20 400000
    5. Pranav 35 700000
    6. Abhishek 26 800000
    7. Ravi 25 300000
    8. David 40 800000

    Suppose you want to retrieve Sum of Employee Salary whose salary is greater than 400000 .

    1. select sum ( Employee_Salary ) as " Total Salary " from Employee_Info where Employee_Salary > 400000

    Output :

    1. Employee_name Employee_Age Employee _Salary
    2. Pranav 35 700000
    3. Abhishek 26 800000
    4. David 40 800000

    In this result if two employee have same salary then both will come in Output . As you can see above example
    If you want to select distinct employee then you can also do , How ? see below :

    1. select sum ( distinct Employee_Salary ) as " total salary " from Employee_Info where Employee_Salary > 400000

    Output :

    1. Employee_name Employee_Age Employee _Salary
    2. Pranav 35 700000

    In above result you can see , it return only distinct salary .
    Sometime we have to use Group By statement with Sum function because sometime we have a table in which two or more department are same and we have to group them and then calculate the result . For example see below :
    Table name -> Branch_Department

    1. Department Sales
    2. Mechanical 360
    3. Electrical 100
    4. Electrical 110
    5. Electronics 150
    6. Electronics 170

    In above example you want to sum of different department then you can do this by Group By statment :

    1. select Department , sum ( Sales ) as " total sales " from Branch_Department Group By Department ;

    Output :

    1. Department Sales
    2. Mechanical 360
    3. Electrical 210
    4. electronics 320

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: