Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Prezados,
Tenho uma tabela conforme abaixo:
Veja se o script abaixo te atende.
TB_INLINE:
LOAD * INLINE [
Dimensao, OrdemPeriodo, Percentual
RETENCAO, 1, 10.42
RETENCAO, 2, 10.75
RECONQUISTA, 1, 7.40
RECONQUISTA, 2, 8.13
INCENTIVO, 1, 10.00
INCENTIVO, 2, 10.57
BAIXO VALOR, 1, 72.18
BAIXO VALOR, 2, 70.55
];
TB:
LOAD
Dimensao
, Percentual as PeriodoAtual
Resident TB_INLINE
WHERE OrdemPeriodo = 1;
Join (TB)
LOAD
Dimensao
, Percentual as PeriodoAnterior
Resident TB_INLINE
WHERE OrdemPeriodo = 2;
Drop table TB_INLINE;
Veja se o script abaixo te atende.
TB_INLINE:
LOAD * INLINE [
Dimensao, OrdemPeriodo, Percentual
RETENCAO, 1, 10.42
RETENCAO, 2, 10.75
RECONQUISTA, 1, 7.40
RECONQUISTA, 2, 8.13
INCENTIVO, 1, 10.00
INCENTIVO, 2, 10.57
BAIXO VALOR, 1, 72.18
BAIXO VALOR, 2, 70.55
];
TB:
LOAD
Dimensao
, Percentual as PeriodoAtual
Resident TB_INLINE
WHERE OrdemPeriodo = 1;
Join (TB)
LOAD
Dimensao
, Percentual as PeriodoAnterior
Resident TB_INLINE
WHERE OrdemPeriodo = 2;
Drop table TB_INLINE;
Deu certo, muito obrigado.