I have the query that return me two results where I would like to format it to come in the proper format. How could I do that?
select *, sum(valor) as ValorSoma, count(pedido) as QtdPedido from tb_vendas
where idvendas > 0
and data_venda between '05/10/2015' and '11/04/2016'
and vendedor = ''
group by cliente
order by QtdPedido desc
ValueSummary type
QtyType integer type
Thank you