美文网首页
A表, B表, AB关系表左连接关系查询

A表, B表, AB关系表左连接关系查询

作者: 私人云笔记_骁勇波波 | 来源:发表于2023-02-09 09:58 被阅读0次

    public interface DeviceMapper extends BaseMapper<Device> {

        @Select("select c.*, d.patient_hcp_id from (SELECT a.model, b.patient_id from sys_device as a LEFT JOIN sys_patient_device as b on a.create_id=#{createId} AND a.sn=b.sn) as c left JOIN sys_patient as d ON c.patient_id=d.id")

        Page<ExtDevice> getPageDevicePatientVo(Integer createId, Page<ExtDevice> iPage);

    }

    相关文章

      网友评论

          本文标题:A表, B表, AB关系表左连接关系查询

          本文链接:https://www.haomeiwen.com/subject/gfickdtx.html