これらの3つのクエリがあります
select tab_ug.cod
from tab_ug
select coalesce(sum(valor),0)
from contas
where contas.conta_monitorada = 'Sim'
group by ug
select coalesce(sum(valor_justificativa),0)
from contas, justificativas
where contas.cod = justificativas.cod_contas
and contas.conta_monitorada = 'Sim'
group by ug
それらを単一のクエリに結合したいのですが、それを行うのに問題があります...誰か助けてもらえますか? テーブル " tab_ug " は によって " contas " テーブルに接続しますcontas.ug = tab_ug.cod
。テーブル「justificativas」は「contas」テーブルに接続しますcontas.cod = justificativas.cod_contas