forked from github/dataease
Merge pull request #4210 from dataease/pr@dev@fix_excel_releation
fix(血源分析): 优化血源关系查询结果
This commit is contained in:
commit
36ff892d60
@ -234,6 +234,7 @@
|
||||
group by sa.auth_source
|
||||
) pg_auth on pg_auth.id = pg.id
|
||||
where dt.id=#{datasetId,jdbcType=VARCHAR}
|
||||
group by id,panel_id
|
||||
order by id
|
||||
</select>
|
||||
</mapper>
|
||||
|
@ -239,6 +239,7 @@
|
||||
group by sa.auth_source
|
||||
) pg_auth on pg_auth.id = pg.id
|
||||
where ds.id=#{datasourceId,jdbcType=VARCHAR}
|
||||
group by id,panel_id
|
||||
order by id
|
||||
</select>
|
||||
</mapper>
|
||||
|
@ -285,7 +285,7 @@
|
||||
)
|
||||
group by sa.auth_source
|
||||
) dt_auth on dt.id = dt_auth.id
|
||||
join datasource ds on dt.data_source_id = ds.id
|
||||
left join datasource ds on dt.data_source_id = ds.id
|
||||
left join
|
||||
(
|
||||
select
|
||||
@ -318,7 +318,8 @@
|
||||
group by sa.auth_source
|
||||
) ds_auth on ds_auth.id = ds.id
|
||||
where pg.id=#{panelId,jdbcType=VARCHAR}
|
||||
group by dt.id
|
||||
group by id,dt_id
|
||||
order by id
|
||||
</select>
|
||||
|
||||
<select id="listPanelByUser" resultType="io.dataease.plugins.common.base.domain.PanelGroup"
|
||||
|
Loading…
Reference in New Issue
Block a user