DATA_FIM - DATA_ENTRADA

0

I'm new to the PL / SQL world, could anyone help me with the code below?

SELECT  ap.nr_atendimento,
        ap.DT_ALTA,
        ap.DT_ENTRADA,
            (SELECT SUM (to_char(TRUNC((apu.dt_saida_unidade - apu.dt_entrada_unidade * 60) / 3600), 'FM9900')) || ':' ||
                    to_char(TRUNC(MOD((apu.dt_saida_unidade - apu.dt_entrada_unidade * 60), 3600) / 60), 'FM00') || ':' ||
                    to_char(MOD((apu.dt_saida_unidade - apu.dt_entrada_unidade * 60), 60), 'FM00')
            FROM atend_paciente_unidade apu
                WHERE apu.cd_setor_atendimento = 129
                    AND apu.nr_atendimento = ap.nr_atendimento) unid_inter_3_andar
    
asked by anonymous 23.10.2018 / 20:48

0 answers