Hi!
I'm wonder if it is possible to make a query which joins data from two
tables and also aggregates some columns of one of them
I mean something like
SELECT p1.id_prod, p1.name_prod, d1.id_prod, sum(d1.quant_detal) FROM
prod p1, detal d1 WHERE p1.id_prod=d1.id_prod
GROUP BY p1.id_prod;
TIA
Rem