Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

asacap1000

transformar resultado de um select de várias linhas para uma linha

Recommended Posts

Galera salve salve a todos,

 

Estou com um problema em um select  e preciso da ajuda de vocês.

 

O select se refere a calculo de faturamentos os quais calculam os itens cobrados na NF.

Eu preciso gerar um relatório destes lançamentos e com isso criei o select  abaixo.

select bo.lager,
               bo.id_os,
               k.id_klient,
               k.suchbegriff cnpj_cpf,
               k.name,
               bi.div_1 lote,
               bi.div_10 di_dde,
               (select distinct dis.id_dispatcher
                  from fiscal.dochd dc, wms_eadi.dispatcher dis
                 where dc.dochd_doc_id = bo.nr_nf
                   and dc.dochd_rps_desp = dis.suchbegriff) cod_comissaria,
               (select distinct dis.bez
                  from fiscal.dochd dc, wms_eadi.dispatcher dis
                 where dc.dochd_doc_id = bo.nr_nf
                   and dc.dochd_rps_desp = dis.suchbegriff) comissaria,
               bo.nr_nf,
               bo.date_bill,
               bo.date_emiss,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and wer.wert = 'ARMAZ')) vlr_armaz,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and wer.wert = 'GER.RISCO')) vlr_ger_risco,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and wer.wert = 'MOVIMENT')) vlr_movimentacao,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and wer.wert = 'DESUNIT')) vlr_desunit,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and wer.wert = 'PESAGEM')) vlr_pesagem,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and wer.wert = 'AVERBAÇÃO')) vlr_averbacao,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and wer.wert = 'FAT.MINIMO.')) vlr_fat_minimo,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and bll.billite not in ('21.02', '21.03')
                           and wer.wert = 'OUT.SERV.')) vlr_outros_serv,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and bll.billite = '21.02'
                           and wer.wert = 'OUT.SERV.')) transf_in,
               (select sum(round(osi.preis, 2))
                  from bill_os_item osi
                 where osi.lager = bo.lager
                   and osi.id_klient = k.id_klient
                   and osi.id_os = bo.id_os
                   and osi.billite = bi.billite
                   and osi.div_1 = bi.div_1
                   and nvl(osi.div_10, 'x') = nvl(bi.div_10, 'x')
                   and osi.billite in
                       (select bll.billite
                          from bill_item bll, werte wer
                         where bll.tipo_fat = wer.wert
                           and wer.werte_ber = 'ITENSF'
                           and bll.billite = '21.03'
                           and wer.wert = 'OUT.SERV.')) transf_out
        
          from bill_os bo, bill_os_item bi, klienten k
         where bo.lager = bi.lager
           and bo.id_klient = bi.id_klient
           and bo.id_os = bi.id_os
           and bo.lager = k.lager
           and bo.id_klient = k.id_klient
           and bo.status = '90'
           and k.id_klient = '2464'
        --and trunc(bo.date_bill) between '$inicio' and '$fim'
         group by bo.lager,
                  bo.id_os,
                  k.id_klient,
                  k.suchbegriff,
                  k.name,
                  bo.date_emiss,
                  bo.nr_nf,
                  bo.date_bill,
                  bi.billite,
                  bi.div_1,
                  bi.div_10

Ele me traz os resultados por linhas de cada tipo de cobrança.

Segue imagem do resultado.

image.thumb.png.5548630874b10747847395f6f0768cb1.png

 

Eu preciso que os resultados viessem em apenas uma linha, estou quebrando a cabeça com isso.

o resultado tem que ser assim:

 

image.thumb.png.ee2d8248173fd8433404ec0c608e2df3.png

Compartilhar este post


Link para o post
Compartilhar em outros sites

  • Conteúdo Similar

    • Por FabianoSouza
      Eu preciso exibir duas informações em minha consulta:
      1) A quantidade de pessoas inscritas numa turma de treinamento (isso é feito com um simples COUNT)
      2) Uma flag de excesso de inscrições na turma. Seria obtido pela comparação entre a quantidade máxima permitida (já existe esse campo) e o COUNT feito acima.
       
      Até aqui sem problemas.
       
      O que quero é evitar fazer duas contagens (1 para saber a quantidade de inscritos, e outra para gerar a flag de excesso de inscrições).
       
      Há uma forma de utilizar UMA contagem para atender as duas necessidades?
       
      Meu código está assim:
       
      ... --AQUI FAZ A COMPARAÇÃO PARA GERAR A FLAG DE EXCESSO DE INSCRIÇÕES , CASE WHEN (SELECT COUNT(*) FROM dbo.tab AS ITT WHERE ITT.codTurmaDeTreina = T.id) > T.lotacaoMax Then T.nome + '&nbsp;'+'<span class=%22icon-aviso fcolor-critico%22 style=%22font-size:18px%22 title=Excesso&nbsp;de&nbsp;inscrições></span>' --AQUI FAZ A CONTAGEM DE INSCRIÇÕES , (SELECT COUNT(*) FROM dbo.tab AS ITT WHERE ITT.codTurmaDeTreina = T.id) AS 'Inscrições'  
    • Por FabianoSouza
      Possuo uma coluna de data.
      Eu gostaria que os registros com datas futuras aparecessem no topo do meu select, em relação aos demais registros.
      Em seguida, gostaria que somente esses registros com datas futuras ficassem em ordem crescente.
      Algo como 
       
      João  | 16/11/2023
      Maria | 17/11/2023
      José  |  20/11/2023
       
      -----------------------------
      (demais registros da base)
      Antônio   |  20/05/2023
      Rosa        | 15/08/2023
      Cida         | 15/10/2022
      Pedro      |  20/05/2021
      Paulo      |  14/11/2020
       
      O select seria esse.
      select dbo.formataData(ET.dataInicial) AS 'data' FROM dbo.tab AS ET GROUP BY ET.dataInicial  
    • Por mateus.andriollo
      Existe uma forma de fazer um IF na select e comparar com Array de dados?
       
      algo como
       
      Select if( in_array(idCliente,'1,2,3,4,5')=true,'Tem','Não') ) as cliente Não consigo usar inner ou where pois esse array é algo q tem varias regras...
       
      Precisava saber se existe uma função assim em MySQL
    • Por mateus.andriollo
      Existe uma forma de fazer um IF na select e comparar com Array de dados?
       
      algo como
       
      Select if( in_array(idCliente,'1,2,3,4,5')=true,'Tem','Não') ) as cliente Não consigo usar inner ou where pois esse resultado do array é algo q tem varias regras...
       
      Precisava saber se existe uma função assim em MySQL
    • Por dfoliveira82
      Bom dia senhores,
       
      sou novo no Oracle, antes trabalhava com SQL SERVER, e me deparei com algo que ja estou a horas tentando solucionar mas nao consegui.
      Nessa Trigger que vou postar, quando mando compilar ela, fala que esta faltando uma virgula, apos o values, mas nao precisa dela e nao acho onde pode ser essa virgula faltante.
      CREATE OR REPLACE TRIGGER JOBS_CL_INSERE_USUARIO AFTER INSERT OR UPDATE OF EXPORTADA_AVA ON SITE_USUARIOS REFERENCING NEW AS NEW BEGIN INSERT INTO BLACKBEAN.TBL_USERS VALUES (NULL, 'INSERT', NULL, 'db', '0', '0', '0', TO_CHAR(:NEW.CPF), MD5(:NEW.CPF||'port@l'), TO_CHAR(:NEW.CPF), SUBSTRING(:NEW.NOME, 1, INSTR(:NEW.NOME, ' ')-1), SUBSTRING(:NEW.NOME, INSTR(:NEW.NOME, ' ')+1, LEN(:NEW.NOME)), 'email@email.com', NULL, NULL, DATE_TO_UNIX_TS(SYSDATE), NULL, NULL); END; / Se alguem puder me ajudar agradeceria.
×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.