select a.* from Product a,Facture b where a.FactureID=b.FactureID order by b.FactureName
select * from Product a,Facture b where a.FactureID=b.FactureID order by a.Name
select Product.*
from Product a,Facture b
where a.FactureID=b.FactureID
order by b.FactureName