

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find sum with MySQL SUM() and give aliases for column heading
For alias, use the following syntax wherein we are display an alias name −
select sum(yourColumnName) as anyAliasName from yourTableName;
Let us first create a table −
mysql> create table DemoTable1800 ( Salary int ); Query OK, 0 rows affected (0.00 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable1800 values(18000); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1800 values(32000); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1800 values(50000); Query OK, 1 row affected (0.00 sec)
Display all records from the table using select statement −
mysql> select * from DemoTable1800;
This will produce the following output −
+--------+ | Salary | +--------+ | 18000 | | 32000 | | 50000 | +--------+ 3 rows in set (0.00 sec)
Here is the query find sum and set alias for column heading −
mysql> select sum(Salary) as Total from DemoTable1800;
This will produce the following output −
+--------+ | Total | +--------+ | 100000 | +--------+ 1 row in set (0.00 sec)
- Related Questions & Answers
- MySQL query to find sum of fields with same column value?
- Get sum of column with conditions in MySQL
- MySQL select accumulated (running sum) column?
- Matrix row sum and column sum using C program
- Select and sum with grouping in MySQL?
- Find column with maximum sum in a Matrix using C++.
- MySQL SELECT to sum a column value with previous value
- Sum the values in a column in MySQL?
- How to sum varchar column and display the count in MySQL?
- Find required sum pair with JavaScript
- MySQL Sum Query with IF Condition?
- MySQL - SUM rows with same ID?
- Find Sum of all unique subarray sum for a given array in C++
- How to create a Cumulative Sum Column in MySQL?
- How to sum elements of a column in MySQL?
Advertisements