Use SUM on int value : Sum « Math « SQL / MySQL

SQL / MySQL
1. Backup Load
2. Command MySQL
3. Cursor
4. Data Type
5. Database
6. Date Time
7. Flow Control
8. Function
9. Insert Delete Update
10. Join
11. Key
12. Math
13. Procedure Function
14. Select Clause
15. String
16. Table Index
17. Transaction
18. Trigger
19. User Permission
20. View
21. Where Clause
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL / MySQL » Math » Sum 
Use SUM on int value

/*

mysql> select * from employee_person;
+----+-------------------------------------+---------+---------------------------+------------+------+----------+-----------------+----------+
| id | address                             | phone   | email | birthday   | sex  | m_status | s_name          | children |
+----+-------------------------------------+---------+---------------------------+------------+------+----------+-----------------+----------+
|  1 | 200, Regina Street                  | 7176666 | [email protected] | 1971-04-26 | M    | Y        | Ane Regina      |     NULL |
|  2 | 1232 Alberta Road                   | 5553312 | [email protected] | 1968-03-02 | M    | Y        | Jane Van        |        3 |
|  3 | 90 Potter A                         | 3331211 | [email protected] | 1967-09-22 | M    | N        | Sandhya Pil     |        2 |
|  4 | 202, Donna Street                   | 7176167 | [email protected] | 1976-08-09 | F    | Y        | Manish Sha      |     NULL |
|  5 | Apartment #8, UBC, Van Street       | 8973242 | [email protected] | 1974-10-14 | F    | N        | NULL            |     NULL |
|  6 | 46 SFU Street                       | 6451234 | [email protected] | 1978-12-31 | M    | N        | NULL            |     NULL |
|  7 | 432 Mercury Ave                     | 7932232 | [email protected] | 1966-08-21 | M    | Y        | Mary Shelly     |        3 |
|  8 | 8 Little YaleTown                   | 5442994 | [email protected] | 1975-01-14 | M    | N        | NULL            |     NULL |
|  9 | 64 Temp Road                        | 4327652 | [email protected] | 1969-05-19 | M    | Y        | Man Nanda       |        1 |
| 10 | 132 Metro House, Henry Street       | 5552376 | [email protected] | 1968-07-06 | M    | N        | NULL            |     NULL |
| 11 | 1 Grace Town, Van Avenue            | 5433879 | [email protected] | 1957-11-04 | M    | Y        | Muriel Lovelace |        4 |
| 12 | 97 Oakland Road                     | 5423311 | [email protected] | 1968-02-15 | M    | Y        | Rina Brighton   |        3 |
| 13 | 543 Applegate Lane                  | 3434343 | [email protected] | 1968-09-03 | F    | Y        | Matt Shi        |        2 |
| 14 | 76 Fish Street                      | 7432433 | [email protected] | 1965-04-28 | M    | N        | NULL            |     NULL |
| 15 | 98 Gun Street                       | 6500787 | [email protected] | 1966-06-23 | M    | Y        | Betty Cudly     |        3 |
| 16 | #5 Winnepag Homes                   | 5433243 | [email protected] | 1964-03-06 | M    | Y        | Stella Stevens  |        2 |
| 17 | 652 Devon Building, 6th Jade Avenue | 5537885 | [email protected] | 1970-04-18 | F    | Y        | Edgar Alan      |        1 |
| 18 | Apartment #9, Together Towers       | 5476565 | [email protected] | 1973-10-09 | M    | N        | NULL            |     NULL |
| 19 | Apartment #9, West Towers           | 5476565 | [email protected] | 1973-01-20 | M    | N        | NULL            |     NULL |
| 20 | 90 Yale Town                        | 7528326 | [email protected] | 1968-01-25 | F    | N        | NULL            |     NULL |
| 21 | 4329 Eucalyptus Avenue              | 4254863 | [email protected] | 1964-06-13 | M    | Y        | Ruby Richer     |        2 |
+----+-------------------------------------+---------+---------------------------+------------+------+----------+-----------------+----------+
21 rows in set (0.04 sec)

mysql> select sum(children) from employee_person;
+---------------+
| sum(children) |
+---------------+
|            26 |
+---------------+
1 row in set (0.00 sec)


*/
Drop table employee_person;

CREATE TABLE employee_person (
    id int unsigned not null primary key, 
    address varchar(60)
    phone int, 
    email varchar(60)
    birthday DATE, 
    sex ENUM('M''F')
    m_status ENUM('Y','N')
    s_name varchar(40)
    children int
);


INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_namevalues (1'200, Regina Street', 7176666'ne[email protected]', '1971-04-26', 'M''Y''Ane Regina');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (2'1232 Alberta Road', 5553312'jo@hotmail.com', '1968-03-02', 'M''Y''Jane Van', 3);
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (3'90 Potter A', 3331211'gp@ymail.com', '1967-09-22', 'M''N''Sandhya Pil', 2);
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_namevalues (4'202, Donna Street', 7176167'tw[email protected]', '1976-08-09', 'F''Y''Manish Sha');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_statusvalues (5'Apartment #8, UBC, Van Street', 8973242'ho[email protected]', '1974-10-14', 'F''N');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_statusvalues (6'46 SFU Street', '6451234', 'ki[email protected]', '1978-12-31', 'M''N');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (7'43Mercury Ave', 7932232'ma[email protected]', '1966-8-21', 'M''Y''Mary Shelly', '3');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_statusvalues (8'8 Little YaleTown', 5442994'ed[email protected]', '1975-01-14', 'M''N');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (9'64 Temp Road', 4327652'na[email protected]', '1969-05-19', 'M''Y''Man Nanda', '1');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_statusvalues (10'13Metro House, Henry Street', 5552376'ra@hotmail.com', '1968-07-06', 'M''N');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (11'1 Grace Town, Van Avenue', 5433879'so[email protected]', '1957-11-04', 'M''Y''Muriel Lovelace', '4');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (12'97 Oakland Road', 5423311'ki[email protected]', '1968-02-15', 'M''Y''Rina Brighton', 3);
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (13'54Applegate Lane', 3434343'le[email protected]', '1968-09-03', 'F''Y''Matt Shi', '2');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_statusvalues (14'76 Fish Street', 7432433'ti[email protected]', '1965-04-28', 'M''N');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (15'98 Gun Street', 6500787'da[email protected]', '1966-06-23', 'M''Y''Betty Cudly', 3);
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (16'#5 Winnepag Homes', 5433243'mi[email protected]', '1964-03-06', 'M''Y''Stella Stevens', 2);
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (17'65Devon Building, 6th Jade Avenue', 5537885'mo[email protected]', '1970-04-18', 'F''Y''Edgar Alan', 1);
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_statusvalues (18'Apartment #9, Together Towers', 5476565'od[email protected]', '1973-10-09', 'M''N');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_statusvalues (19'Apartment #9, West Towers', 5476565'ji[email protected]', '1973-1-20', 'M''N');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_statusvalues (20'90 Yale Town', 7528326'he[email protected]', '1968-01-25', 'F''N');
INSERT INTO employee_person (id, address, phone, email, birthday, sex, m_status, s_name, childrenvalues (21'4329 Eucalyptus Avenue', 4254863'mo[email protected]', '1964-06-13', 'M''Y''Ruby Richer', 2);
  
select from employee_person;
  
select sum(childrenfrom employee_person;

           
       
Related examples in the same category
1. Use SUM and alias
2. Use SUM and alias 2
3. Simplest SUM
4. Another SUM
5. Use AVG and SUM together
6. Do calculation with SUM
7. Retrieving Column Totals
w_w__w___._j_av___a_2s___.___c___o___m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.