This select works ok...
This is the same but group by and brigs 0 rows
Any tool with which I can test queries before using it in the app?
Thanks
B4X:
Cursor1 = SQL1.ExecQuery("SELECT
cotiza.ultimoleido,posicion.PF,posicion.id,cotiza.sector,posicion.especie,
posicion.cantidad,posicion.costo,cotiza.ultimo,cotiza.dia,cotiza.cantbid,
cotiza.bid,cotiza.ask,cotiza.cantask,posicion.comiscompra,posicion.sl,posicion.sg
FROM posicion
left outer join cotiza on cotiza.especie=posicion.especie
order by posicion.especie")
This is the same but group by and brigs 0 rows
B4X:
Cursor1 = SQL1.ExecQuery("SELECT
posicion.especie,max(cotiza.sector),max(cotiza.ultimoleido),min(posicion.PF),
min(posicion.id),sum(posicion.cantidad),avg(posicion.costo),max(cotiza.ultimo),
max(cotiza.dia),max(cotiza.cantbid),max(cotiza.bid),max(cotiza.ask),
max(cotiza.cantask),sum(posicion.comiscompra),min(posicion.sl),
max(posicion.sg)
FROM posicion
left outer join cotiza on cotiza.especie=posicion.especie
group by posicion.especie
order by posicion.especie")
Any tool with which I can test queries before using it in the app?
Thanks