我有一个用于发布的数据库,每个表可以有多个作者存储在不同的表中。我想查询数据库,以便在第一列中提供出版物标题列表,并在第二列中提供出版物。" O, V) Y, r0 X9 r6 K. Z0 m! ?
SELECT p.`id`,p.`title`,a.`fullname` from `publications` p LEFT JOIN `authors` a on a.`publication_id` = p.`id`;当然,这使我多次获得了许多作者的出版物标题。( T0 |) q6 ~4 P
id title fullname-- ----- --------1 Beneath the Skin Sean French1 Beneath the Skin Nicci Gerrard2 The Talisman Stephen King2 The Talisman Peter Straub按ID分组后,每个标题都给了我一个作者: T& C; G. i. s' R; Y
SELECT p.`id`,p.`title`,a.`fullname` from `publications` p LEFT JOIN `authors` a on a.`publication_id` = p.`id` GROUP BY a.`id`;id title fullname-- ----- --------1 Beneath the Skin Sean French2 The Talisman Stephen King我正在寻找的结果是:" S; c1 r+ h# L( Y1 R- [2 A" C
id title fullname-- ----- --------1 Beneath the Skin Sean French,Nicci Gerrard2 The Talisman Stephen King,Peter Straub我觉得应该用GROUP_CONCAT找到答案,但我唯一能得到的结果是所有作者的结果: 8 N; [) _- f8 R& n" ]SELECT p.`id`,p.`title`,GROUP_CONCAT(a.`fullname`) from `publications` p LEFT JOIN `authors` a on a.`publication_id` = p.`id` GROUP BY a.`id`;id title fullname-- ----- --------1 Beneath the Skin Sean French,Nicci Gerrard,Stephen King,Peter Straub连接后使用GROUP_CONCAT给我一个每个派生表都必须有自己的别名的错误。 8 {. A+ O; `: W8 K: X0 D6 d9 LSELECT p.`id`,p.`title`,a.`fullname` FROM `publications` p LEFT JOIN (SELECT GROUP_CONCAT(a.`fullname`) FROM `authors` a) ON a.`publication_id` = p.`id`;有什么线索吗?7 r1 H; I- w0 u- y# M8 l
% x6 {0 g0 s- {- t$ z( ^" J 解决方案: : @- g/ E; O1 O3 c
您需要对SELECT中间的所有非聚合列都被分组(并且很明显,不是作者ID分组,因为author是GROUP_CONCAT部分):/ U: U4 Q$ R/ ]" V$ `$ V
SELECT p.`id`,p.`title`,GROUP_CONCAT(a.`fullname` separator ',')from `publications` p LEFT JOIN `authors` a on a.`publication_id` = p.`id` GROUP BY p.`id`,p.`title`;