The select below returns something like
005-A Produto A 21/AGOSTO
005-A Produto A 20/AGOSTO
005-A Produto A 21/MAIO
005-B Produto B 21/AGOSTO
and I would like one record per product equal to the following
005-A Produto A 21/AGOSTO
005-B Produto B 21/AGOSTO
What do I need to adapt the following select?
select i.referencia, i.nome, nf.data_emissao
from notas_fiscais_itens nfi
inner join notas_fiscais nf on nf.id = nfi.nota_fiscal_id
inner join itens i on i.id = nfi.item_id
order by i.referencia, nf.data_emissao desc
Thank you