Estou tentando rodar a seguinte consulta usando left join:
SELECT
TBL_PROCESSO.COD_PROCESSO,
TBL_PROCESSO.DATA_RECEBIMENTO,
TBL_POSTAGEM.DATA_POSTAGEM,
TBL_INDEFERIMENTO.DATA_INDEFERIMENTO,
TBL_DEVOULUCAO.DATA_DEVOLUCAO
FROM TBL_PROCESSO
LEFT JOIN tbl_postagem ON tbl_postagem.cod_processo = tbl_processo.cod_processo;
LEFT JOIN tbl_indeferimento ON tbl_indeferimento.cod_processo = tbl_processo.cod_processo;
LEFT JOIN TBL_DEVOLUCAO ON TBL_DEVOLUCAO.COD_PROCESSO = TBL_PROCESSO.COD_PROCESSO;
Eu preciso usar esta consulta para encontrar datas nulas em 3 tabelas porém eu estou tendo algumas dificuldades em rodar esta consulta. Consegui usar em 2 tabelas, quando acrescentei alguns campos a sintaxe está retornando este erro. Estou enviando uma cópia do BD para teste. A questão é a seguinte, preciso retornar se há alguma data nula na tabela de indeferimento ou devolucao ou postagem. caso alguém puder me ajudar eu agradeceria muito.
SELECT
TBL_PROCESSO.COD_PROCESSO,
TBL_PROCESSO.DATA_RECEBIMENTO,
TBL_POSTAGEM.DATA_POSTAGEM,
TBL_INDEFERIMENTO.DATA_INDEFERIMENTO,
TBL_DEVOULUCAO.DATA_DEVOLUCAO
FROM TBL_PROCESSO
LEFT JOIN tbl_postagem ON tbl_postagem.cod_processo = tbl_processo.cod_processo;
LEFT JOIN tbl_indeferimento ON tbl_indeferimento.cod_processo = tbl_processo.cod_processo;
LEFT JOIN TBL_DEVOLUCAO ON TBL_DEVOLUCAO.COD_PROCESSO = TBL_PROCESSO.COD_PROCESSO;
Eu preciso usar esta consulta para encontrar datas nulas em 3 tabelas porém eu estou tendo algumas dificuldades em rodar esta consulta. Consegui usar em 2 tabelas, quando acrescentei alguns campos a sintaxe está retornando este erro. Estou enviando uma cópia do BD para teste. A questão é a seguinte, preciso retornar se há alguma data nula na tabela de indeferimento ou devolucao ou postagem. caso alguém puder me ajudar eu agradeceria muito.
- Anexos
- Bd teste.zip
- Você não tem permissão para fazer download dos arquivos anexados.
- (410 Kb) Baixado 2 vez(es)