I have a database that makes queries to know the amounts of detailed information of each table, which are sorted through a "country table". When you perform the query, only the information that contains data appears, for example:
in the country table there are 4 data
and 10 data in the following tables
< a href="https://i.stack.imgur.com/6J9Zf.png">
when queries are made to the organization table
SELECT
pais.codigo_pais,
pais.descrip_pais,
Count(organizaciones.codigo_org) AS CUENTA,
FROM
organizaciones
Inner Join pais ON pais.codigo_pais = organizaciones.codigo_pais
GROUP BY
organizaciones.codigo_pais
results in me
and when I consult the other two meeting tables
SELECT
pais.codigo_pais,
pais.descrip_pais,
Count(reuniones.codigo_reu) AS CUENTA
FROM
reuniones
Inner Join pais ON reuniones.codigo_pais = pais.codigo_pais
GROUP BY
reuniones.codigo_pais
and commitments
SELECT
pais.codigo_pais,
pais.descrip_pais,
Count(compromisos.codigo_reu) AS CUENTA
FROM
compromisos
Inner Join pais ON compromisos.codigo_pais = pais.codigo_pais
GROUP BY
compromisos.codigo_pais
this result appears
What I need is for the query to show me the country that registers the value "0" in the tables account2 and account3. In this case, it would include the Germany registry, as in the example below: