zoukankan      html  css  js  c++  java
  • Mysql中的GROUP_CONCAT使用

     SELECT
        res.ITRId Id,
        res.ITRResourceName ResourceName,
        res.ITRSupplierName SupplierName,
        res.ITRDeptCityName DeptCityName,
        res.ITRDeptAirportName DeptAirportName,
        res.ITRDataFlag DataFlag,
        res.ITRDeptCityId,
        res.ITRSupplierId,
        res.ITRTcManagerId,
        bus.ITFDestCityName DestCityName,
        bus.ITFDestAirportName DestAirportName,
        city.ITCTransPortCityName
        -- (select GROUP_CONCAT(city.ITCTransPortCityName separator  ',' ) TransportCityName from SGRInternationalTransportCity city where   city.ITCTransportId = res.ITRId) as TransportCityName
        FROM SGRInternationalTransportResources res
        left JOIN SGRInternationalTransportFlightResource bus ON res.ITRId = bus.ITFTransportId
        left JOIN SGRInternationalTransportCity city ON city.ITCTransportId = res.ITRId
        where res.ITRResourceType =2

    执行的结果如下:

    表联合查询后ID相同的存在多条记录;其他字段值均一样仅ITCTransPortCityName字段值不同;

    使用GROUP_CONCAT 优化后:

     SELECT
        res.ITRId Id,
        res.ITRResourceName ResourceName,
        res.ITRSupplierName SupplierName,
        res.ITRDeptCityName DeptCityName,
        res.ITRDeptAirportName DeptAirportName,
        res.ITRDataFlag DataFlag,
        res.ITRDeptCityId,
        res.ITRSupplierId,
        res.ITRTcManagerId,
        bus.ITFDestCityName DestCityName,
        bus.ITFDestAirportName DestAirportName,
        (select GROUP_CONCAT(city.ITCTransPortCityName separator  ',' ) TransportCityName from SGRInternationalTransportCity city where   city.ITCTransportId = res.ITRId) as TransportCityName
        FROM SGRInternationalTransportResources res
        left JOIN SGRInternationalTransportFlightResource bus ON res.ITRId = bus.ITFTransportId
        left JOIN SGRInternationalTransportCity city ON city.ITCTransportId = res.ITRId
        where res.ITRResourceType =2

    已经初步得到我们想要的结果了;可结果集还是三条记录,列表呈现依然存在问题...进一步优化如下:

    去除:

        left JOIN SGRInternationalTransportCity city ON city.ITCTransportId = res.ITRId

    得到结果如下:

    如果需要对 ITCTransPortCityName 这个字段进行查询该如何处理?用 like 么?使用 exists 进行处理

     and exists (select 1 from SGRInternationalTransportCity city where res.ITRId = city.ITCTransportId and city.ITCTransPortCityId=226 )    

    已成功筛选 城市ID为 226 的城市

  • 相关阅读:
    Java规约之方法设计
    JVM第一篇 JVM与Java体系结构
    初学者学习Java方法集
    初学者学习Java方法集
    1.Spring-Boot 静态文件和页默认放置位置
    2.Spring-Boot常用配置解释
    3.Spring-Boot核心@SpringBootApplication介绍
    4.Spring-Boot中基于Junit的单元测试
    vue学习笔记(一) ---- vue指令(v-for 和 key 属性)
    vue学习笔记(一) ----- vue指令(菜单列表案例)
  • 原文地址:https://www.cnblogs.com/zhangruiBlog/p/8421417.html
Copyright © 2011-2022 走看看