0
Use the UNION operator:
SELECT * FROM
(
SELECT chave, Data_Venda, Qtde_Produto, Valor_Produto FROM Tabela_Pai
UNION
SELECT chave, Data_Venda, Qtde_Produto, Valor_Produto FROM Tabela_Filho
) temp
ORDER BY chave;
0
1
Use the UNION operator:
SELECT * FROM
(
SELECT chave, Data_Venda, Qtde_Produto, Valor_Produto FROM Tabela_Pai
UNION
SELECT chave, Data_Venda, Qtde_Produto, Valor_Produto FROM Tabela_Filho
) temp
ORDER BY chave;
Browser other questions tagged sql oracle11g
You are not signed in. Login or sign up in order to post.