/* Todas as disciplinas que não foram ofertadas na pós-graduação no ano de 2015 e que possuem turmas */ select distinct cc.NM_COMPNT_CURR as disciplina_com_turma,ac.CD_PERD_LETV as periodo_letivo, so.NM_ORG as nome_orgao from SIGA_ATIVIDADE_ACADEMICA ac, SIGA_COMPONENTE_CURRICULAR cc, siga_orgao so where cc.CD_COMPNT_CURR = ac.CD_COMPNT_CURR and ac.CD_PERD_LETV in ('2015.1', '2015.2') and ac.FL_TEM_TURMA = 1 and ac.CD_ORG = so.CD_ORG and so.CD_TP_ORG not in (42) order by cc.NM_COMPNT_CURR; /* Todas as disciplinas que não foram ofertadas na pós-graduação no ano de 2015 e que não possuem turmas */ select distinct cc.NM_COMPNT_CURR as disciplina_sem_turma,ac.CD_PERD_LETV as periodo_letivo, so.NM_ORG as nome_orgao from SIGA_ATIVIDADE_ACADEMICA ac, SIGA_COMPONENTE_CURRICULAR cc, siga_orgao so where cc.CD_COMPNT_CURR = ac.CD_COMPNT_CURR and ac.CD_PERD_LETV in ('2015.1', '2015.2') and ac.FL_TEM_TURMA = 0 and ac.CD_ORG = so.CD_ORG and so.CD_TP_ORG not in (42) order by cc.NM_COMPNT_CURR; /* Todas as disciplinas que não foram ofertadas na pós-graduação no ano de 2015 */ select distinct cc.NM_COMPNT_CURR as disciplina_sem_turma from SIGA_ATIVIDADE_ACADEMICA ac, SIGA_COMPONENTE_CURRICULAR cc, siga_orgao so where cc.CD_COMPNT_CURR = ac.CD_COMPNT_CURR and ac.CD_PERD_LETV in ('2015.1', '2015.2') and ac.CD_ORG = so.CD_ORG and so.CD_TP_ORG not in (42) order by cc.NM_COMPNT_CURR;