{"id":10732,"date":"2022-08-11T09:44:28","date_gmt":"2022-08-11T01:44:28","guid":{"rendered":"https:\/\/blog.hoyo.idv.tw\/?p=10732"},"modified":"2023-02-07T13:30:26","modified_gmt":"2023-02-07T05:30:26","slug":"mysql-%e4%bd%bf%e7%94%a8-group_concat-%e8%a7%a3%e6%b1%ba%e8%bf%b4%e5%9c%88-select-%e5%95%8f%e9%a1%8c","status":"publish","type":"post","link":"https:\/\/blog.hoyo.idv.tw\/?p=10732","title":{"rendered":"MySQL - \u4f7f\u7528 GROUP_CONCAT \u89e3\u6c7a\u8ff4\u5708 SELECT \u554f\u984c"},"content":{"rendered":"<p>--<\/p>\n<ul>\n<li><a href=\"https:\/\/mariadb.com\/kb\/en\/group_concat\/\" target=\"_blank\" rel=\"noopener\">GROUP_CONCAT - MariaDB Knowledge Base<\/a><\/li>\n<li><a href=\"https:\/\/vimsky.com\/zh-tw\/examples\/usage\/mysql-group_concat-function.html\" target=\"_blank\" rel=\"noopener\">MySQL Group_CONCAT()\u7528\u6cd5\u53ca\u4ee3\u78bc\u793a\u4f8b<\/a><\/li>\n<li><a href=\"http:\/\/wangzhengzhen.com\/2203.html\" target=\"_blank\" rel=\"noopener\">MySQL\u628a\u591a\u4e2a\u67e5\u8be2\u7ed3\u679c\u5408\u5e76JSON<\/a><\/li>\n<li><a href=\"https:\/\/www.dpriver.com\/pp\/sqlformat.htm\" target=\"_blank\" rel=\"noopener\">Instant SQL Formatter (dpriver.com)<\/a><\/li>\n<\/ul>\n<p>con JOIN org \u8cc7\u6599\u8868\u4e4b\u5f8c\uff0c\u60f3\u8981\u5e36 sale \u5c0d\u61c9\u7684\u4e00\u5c0d\u591a\u92b7\u552e\u7d00\u9304\u3002\u6839\u64da\u9700\u6c42\u53ef\u4ee5\u90fd\u4f7f\u7528 JOIN \u4f86\u9023\u63a5\uff0c\u4e4b\u5f8c\u5728\u7528\u7a0b\u5f0f\u4f86\u8655\u7406\u986f\u793a\uff0c\u4e0d\u904e\u9019\u6a23\u7a0b\u5f0f\u96e3\u5beb\uff0c\u5982\u679c\u53ef\u4ee5\u628a\u92b7\u552e\u7d00\u9304\u4e5f\u8b8a\u6210\u4e00\u500b\u6b04\u4f4d\u5c0d\u61c9\u5230\u7d00\u9304\u5c31\u597d\u4e86\uff0c\u9019\u6642\u5c31\u53ef\u4ee5\u4f7f\u7528 GROUP_CONCAT()<\/p>\n<pre class=\"lang:mysql decode:true \">SELECT a.*,\r\n       GROUP_CONCAT(sale.name)   AS name,\r\n       GROUP_CONCAT(sale.price)  AS price\r\nFROM   `con` a\r\n       INNER JOIN org b\r\n               ON a.org_id = b.id\r\nWHERE  a.xxx = '1'\r\nGROUP  BY a.id\r\nORDER  BY a.id DESC<\/pre>\n<p>\u9019\u6a23\u6703\u67e5\u8a62\u51fa 2 \u500b\u6b04\u4f4d\uff0c\u5fc5\u9808\u81ea\u884c\u4f7f\u7528 key \u4f86\u5b9a\u4f4d\uff0c\u4e0d\u60f3\u9019\u9ebc\u9ebb\u7169\u7684\u8a71\u53ef\u4ee5\u6574\u5408\u6210\u4e00\u500b JSON\uff0c\u50cf\u9019\u6a23<\/p>\n<pre class=\"lang:default decode:true\">SELECT a.*,\r\n       CONCAT('[', GROUP_CONCAT(\r\n                        CONCAT('{\"name\":\"', sale.name, '\",'),\r\n                        CONCAT('\"price\":\"', sale.price, '\"}')\r\n                   ),\r\n       ']')\r\n       AS detail\r\nFROM   `con` a\r\n       INNER JOIN org b\r\n               ON a.org_id = b.id\r\nWHERE  a.xxx = '1'\r\nGROUP  BY a.id\r\nORDER  BY a.id DESC<\/pre>\n<p>\u5982\u6b64\u5c31\u53ef\u4ee5\u6d88\u6ec5\u842c\u60e1\u7684\u591a\u5c64 SELECT \u8cc7\u6599\u5eab\u67e5\u8a62\u7de9\u6162\u554f\u984c<\/p>\n<p>--<\/p>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p class=\"pvc_stats all \" data-element-id=\"10732\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> &nbsp;1,236&nbsp;total views<\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>-- GROUP_CONCAT...<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p class=\"pvc_stats all \" data-element-id=\"10732\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> &nbsp;1,236&nbsp;total views<\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[258],"tags":[],"_links":{"self":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/10732"}],"collection":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=10732"}],"version-history":[{"count":14,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/10732\/revisions"}],"predecessor-version":[{"id":13342,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/10732\/revisions\/13342"}],"wp:attachment":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10732"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=10732"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=10732"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}