Q1)a) select numprod from producteur where numprod in (select numprod from recolte); b) select numprod from producteur where not exists (select numprod from recolte where recolte.numprod=producteur.numprod); Q2)a) select nom,count (numvin) from recolte, producteur where recolte.numprod=producteur.numprod group by nom having count(numvin)=(select count(numvin) from vin); b) Q4) select nom, sum(quantite) from recolte r, producteur p where r.numprod=p.numprod group by nom; Q5) select nom, sum(quantite) from recolte r, producteur p where r.numprod=p.numprod group by nom having sum(quantite)>100; Q6)