Atikh's DBA blog
  • Home
  • Oracle
  • MySQL
  • MongoDB
  • PostgreSQL
  • Snowflake
  • About Me
  • Contact Us

Aggregation Function in MySQL

 Atikh Shaikh     mysql     No comments   

There are number of functions available in MySQL library, in this particular article we will  discuss aggregation function
Aggregation function s are generally used with SELECT statements containing GROUP BY clauses, however these may be used without group by clauses as well.
Below table describes aggregation functions available in MySQL (including MySQL 8.0 version)
Name
Description
AVG()
Returns average value of argument
BIT_AND()
Return bitwise AND
BIT_OR()
Return bitwise OR
BIT_XOR()
Return bitwise XOR
COUNT()
Return a count of rows
COUNT(DISTINCT)
Return a count of number of different values
GROUP_CONCAT()
Returns concatenated string
JSON_ARRAYAGG()
Return result set as single array
JSON_OBJECTAGG()
Return result set as a single object
MAX()
Returns maximum value
MIN()
Returns minimum value
STD(), STDDEV(), STDDEV_POP()
Returns the population standard  deviation
STDDEV_SAMP()
Returns the sample standard deviation
SUM()
Return the summation
VAR_POP()
Return population standard variance
VAR_SAMP()
Returns sample variance
VARIANCE()
Returns Population standard variance

In below section, we will discuss few of these with examples, 
first we will create table agg_tut for use with few records in it.

CREATE TABLE agg_tut (
emp_id int NOT NULL,
emp_name varchar(255),
salary double,
itax double,
age int
);

insert into agg_tut values ('101','John','12500','0','25');
insert into agg_tut values ('102','Smith','52500','2500','45');
insert into agg_tut values ('103','Jinh','22500','2200','32');
insert into agg_tut values ('104','Mist','15500','1000','23');
insert into agg_tut values ('105','Suki','13000','1200','28');
insert into agg_tut values ('108','Rock','33000','1800','30');

count ()
select count of all rows present in table
select count(*) from agg_tut;
+----------+
| count(*) |
+----------+
| 6        |
+----------+

min() and max()
Apply min() and max() on emp_id column first
select min(emp_id) from agg_tut;
+-------------+
| min(emp_id) |
+-------------+
| 101         |
+-------------+

select max(emp_id) from agg_tut;
+-------------+
| max(emp_id) |
+-------------+
| 108         |
+-------------+
Now apply min(), min() on salary column to rectify how much company is paying

select min(salary) from agg_tut;
+-------------+
| min(salary) |
+-------------+
| 12500       |
+-------------+

select max(salary) from agg_tut;
+-------------+
| max(salary) |
+-------------+
| 52500       |
+-------------+

Now calculate the average using avg() salary of employee in organization
select avg(salary) from agg_tut;
+-------------------------+
| avg(salary)             |
+-------------------------+
| 24833.33333333332       |
+-------------------------+

Now calculate the total salary of employee using sum(), so organization will have estimation towards employee cost

select sum(salary) from agg_tut;
+--------------+
| sum(salary)  |
+--------------+
| 149000       |
+--------------+

JSON_OBJECTAGG
Consider we have below data in employee table
select * from agg_tut;
+--------+-----------+--------+-------+------+
| emp_id | emp_name  | salary |itax   |age   |
+--------+-----------+--------+-------+------+
| 101    | John      |12500   |0      |25    |
| 102    | Smith     |52500   |2500   |45    |
| 103    | Jinh      |22500   |2200   |32    |
| 104    | Mist      |15500   |1000   |23    |
| 105    | Suki      |13000   |1200   |28    |
| 108    | Rock      |33000   |1800   |30    |
+--------+-----------+--------+-------+------+

as we know JSON is key value pair language , consider emp_id a as key and other columns such as emp_name and salary are value

Select emp_id,JSON_OBJECTAGG(emp_name,salary) from agg_tut group by emp_id;
+--------+---------------------+
| emp_id | JSON_OBJECTAGG      |
+--------+---------------------+
| 101    | {“John” : 2500.0    |
| 102    | {“Smith” : 52500.0  |
| 103    | {“Jinh” : 22500.0   |
| 104    | {“Mist” : 15500.0   |
| 105    | {“Suki” : 13000.0   |
| 108    | {“Rock” : 33000.0   |
+--------+---------------------+

We have discussed, daily used aggregation function, as described in first table, there are number of aggregation functions available in MySQL.
  • Share This:  
  •  Facebook
  •  Twitter
  •  Instagram
  •  Pin
  •  linkedin
  •  reddit
Email ThisBlogThis!Share to XShare to Facebook
Newer Post Older Post Home

0 comments:

Post a Comment

Author

Atikh Shaikh
View my complete profile

Categories

  • MongoDB (18)
  • Oracle 12c (30)
  • Oracle12cR2 New Feature (3)
  • PostgreSQL (20)
  • RMAN (10)
  • Snowflake (8)
  • mysql (23)
  • oracle (74)

Blog Archive

  • ►  2018 (38)
    • ►  November (25)
    • ►  December (13)
  • ▼  2019 (33)
    • ►  January (15)
    • ►  February (6)
    • ►  March (2)
    • ►  April (5)
    • ▼  May (5)
      • MySQL : mysqld_safe
      • Aggregation Function in MySQL
      • MySQL: pid-file (process id file)
      • ERROR 1221 (HY000): Incorrect usage of DB GRANT an...
      • MongoDB : Capped Collections
  • ►  2020 (5)
    • ►  April (1)
    • ►  May (2)
    • ►  July (2)
  • ►  2021 (8)
    • ►  June (3)
    • ►  July (3)
    • ►  August (1)
    • ►  December (1)
  • ►  2022 (33)
    • ►  May (3)
    • ►  June (10)
    • ►  July (3)
    • ►  August (4)
    • ►  September (8)
    • ►  October (3)
    • ►  November (2)
  • ►  2023 (14)
    • ►  February (1)
    • ►  April (5)
    • ►  May (2)
    • ►  June (1)
    • ►  September (1)
    • ►  October (1)
    • ►  December (3)
  • ►  2024 (5)
    • ►  January (2)
    • ►  March (3)
  • ►  2025 (6)
    • ►  March (1)
    • ►  April (3)
    • ►  May (2)

Popular Posts

  • ORA-29283: invalid file operation: unexpected "LFI" error (1509)[29437]
    I was trying to export the schema in my windows PC, it got stuck with below error    C:\Users\shaik\Videos\technodba exp>expdp userid...
  • Oracle 23ai : Use of NOVALIDATE Constraints in IMPDP
    While performing impdp operations in the Oracle database, Oracle performs validation checks for every constraint on the imported table, that...
  • PostgreSQL : How to get data directory location for PostgreSQL instance
    Sometimes, you start working on a PostgreSQL instance but forget about the data directory, here we will discuss different methods to know th...
  • ERROR 1221 (HY000): Incorrect usage of DB GRANT and GLOBAL PRIVILEGES
    In previous articles, we have learned about user creation and grants  in MySQL in detail, but there are a few privileges called global priv...
  • Oracle Dataguard Broker Configuration (DGMGRL)
    Data Guard Broker is a command-line interface that makes managing primary and standby databases easy. DBA can use a single command to switch...

Labels

oracle Oracle 12c mysql PostgreSQL MongoDB oracle 19c Oracle23c oracle19c Orale PDB-CDB oracle12c python AWS Oracle ASM Virtualbox pluggable database storage engine

Pages

  • Disclaimer
  • Privacy Policy

Follow TechnoDBA

Copyright © Atikh's DBA blog | Powered by Blogger