I'm learning Oracle Apex, my company uses Apex 4, and I have a very basic question.
For example, I have to show a form that show this fields
SELECT r.TXT_SIGLA, ANO_REF, MES_REF, NUM_QUANTIDADE VL, NUM_UNIDADE
FROM planejamento.PE_PARAMETRO_RESULTADO r
Join planejamento.pe_Parametro p ON p.TXT_SIGLA = r.TXT_SIGLA
WHERE ANO_REF = :ANO_REF AND MES_REF = :MES_REF
AND r.TXT_SIGLA IN (:P15_SIGLA)
but when I'm creating forms I just see how show data from one table... How can I show the fields from this query in a form?