Querying the database SELECT * FROM `student` Query results
Convert to age query statement, use the TIMESTAMPDIFF function SELECT id, name, birthday, TIMESTAMPDIFF(YEAR,student.birthday,CURDATE()) as age FROM `student` Query results
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
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:
|
<<: Implement 24+ array methods in JavaScript by hand
>>: UDP simple server client code example
This article example shares the specific code of ...
If there is a table product with a field add_time...
How to indicate the parent directory ../ represent...
When the DataSource property of a DataGrid control...
INSERT INTO hk_test(username, passwd) VALUES (...
The configuration method of MySQL 5.5.56 free ins...
Word MySQL 8.0 has been released for four years s...
MySQL has non-standard data types such as float a...
Every time I design a web page or a form, I am tr...
background If the catalina.out log file generated...
1. Log in to mysql: mysql -u root -h 127.0.0.1 -p...
Preface Node will be used as the middle layer in ...
1. Background Generally, for Docker containers th...
Preface meta is an auxiliary tag in the head area...
To achieve the following goals: Mysql database wi...