Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement one-to-many query by MySQL

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

This article is about how MySQL implements one-to-many queries. The editor thought it was very practical, so I shared it with you as a reference. Let's follow the editor and have a look.

This time you are going to implement an one-to-many query using MySQL's group_concat function.

Group_concat

To put it simply, the function of this function is to connect multiple fields. The detailed explanation of the function can be seen in this article.

Data sheet

First, let's set up two tables.

CREATE TABLE `student` (`id` int (11) NOT NULL AUTO_INCREMENT, `name` char (10) NOT NULL, PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;-- Records of student-- INSERT INTO `student` VALUES ('1th,' tom') INSERT INTO `student` VALUES ('2years,' jerry'); CREATE TABLE `student` (`id` int (11) NOT NULL AUTO_INCREMENT, `sid` int (11) NOT NULL, `cname` char (10) NOT NULL, PRIMARY KEY (`id`) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 -Records of course-- INSERT INTO `kids' VALUES ('1th,' 1', 'language'); INSERT INTO''VALUES' ('2','1', 'math'); INSERT INTO''VALUES' ('3','2', 'English') INSERT INTO `art 'VALUES (' 4pm, '2pm,' sports'); INSERT INTO `fitness' VALUES ('5pm,' 2pm, 'art'); examples

If we use the usual SQL query

SELECT s.`name`, c.`c _ name` FROM student AS s LEFT JOIN course AS c ON c.s_id = s.id

The result of the query is

Let's use the group_concat function to query

SELECT s.`name`, (SELECT group_concat (course.c_name) FROM course WHERE course.s_id = s.id) FROM student AS s; Thank you for reading! About MySQL how to achieve one-to-many query to share here, I hope the above content can be of some help to you, so that you can learn more knowledge. If you think the article is good, you can share it and let more people see it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report