Mysql example of converting birth date into age and grouping and counting the number of people

Mysql example of converting birth date into age and grouping and counting the number of people

Querying the database

SELECT * FROM `student`

Query results

id name birthday
1 Zhang San 1970-10-01
2 Li Si 1990-10-01
3 Wang Wu 2002-10-01
4 Ma Liu 2003-10-01

Convert to age query statement, use the TIMESTAMPDIFF function

SELECT id, name, birthday, TIMESTAMPDIFF(YEAR,student.birthday,CURDATE()) as age FROM `student`

Query results

d name birthady age
1 Zhang San 1970-10-01 50
2 Li Si 1990-10-01 30
3 Wang Wu 2002-10-01 18
4 Ma Liu 2003-10-01 17

Then group them by age group

SELECT
	GROUP_CONCAT(a.id) as ids,
	GROUP_CONCAT(a.name) as names,
	CASE
		WHEN a.age<18 THEN 'teen'
		WHEN a.age>=18 AND a.age< 40 THEN 'youth'
		WHEN a.age>=40 AND a.age< 60 THEN 'middle-aged'
	END as age,
	count(a.id) as count
FROM
	(SELECT id, name, birthday, TIMESTAMPDIFF(YEAR,student.birthday,CURDATE()) as age FROM `student`) as a
GROUP BY
	CASE
		WHEN a.age<18 THEN 'teen'
		WHEN a.age>=18 AND a.age< 40 THEN 'youth'
		WHEN a.age>=40 AND a.age< 60 THEN 'middle-aged'
	END

Query results

ids names age count
1 Zhang San middle aged 1
4 Ma Liu juvenile 1
2,3 Li Si , Wang Wu youth 2

Tips: The current time is 2020

Summarize

This is the end of this article about converting MySQL date of birth to age and grouping and counting the number of people. For more related MySQL date of birth to age and grouping and counting content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Postgresql operation of getting age by date of birth
  • Multiple ways to calculate age by birthday in MySQL
  • SQL example code for judging age by date function

<<:  Implement 24+ array methods in JavaScript by hand

>>:  UDP simple server client code example

Recommend

Vue implements a simple magnifying glass effect

This article example shares the specific code of ...

Detailed explanation of the method of comparing dates in MySQL

If there is a table product with a field add_time...

How to write the parent and child directories of HTML relative paths

How to indicate the parent directory ../ represent...

12 Javascript table controls (DataGrid) are sorted out

When the DataSource property of a DataGrid control...

How to query duplicate data in mysql table

INSERT INTO hk_test(username, passwd) VALUES (...

MySQL 5.5.56 installation-free version configuration method

The configuration method of MySQL 5.5.56 free ins...

Detailed explanation of invisible indexes in MySQL 8.0

Word MySQL 8.0 has been released for four years s...

CSS hacks \9 and \0 may not work for hacking IE11\IE9\IE8

Every time I design a web page or a form, I am tr...

Tomcat8 uses cronolog to split Catalina.Out logs

background If the catalina.out log file generated...

How to access MySql through IP address

1. Log in to mysql: mysql -u root -h 127.0.0.1 -p...

How to deploy Node.js with Docker

Preface Node will be used as the middle layer in ...

HTML tag meta summary, HTML5 head meta attribute summary

Preface meta is an auxiliary tag in the head area...