bonjour
voila j'ai une table clients( NomClient , adresseClient ) et une table commandes ( numeroCommande, NomClient , NomProduit , quantite )
et je dois recupérer le nom et adresse des clients ayant commandé le produit ' brique', avec comme quantité comprise entre 5 et 10
j'ai donc lancé la requete :
les 2 marches mais pourtant j'ai l'impression que la 1 fonctionne au pif car je ne met pas de jointure...Code:select clients.nomClient,adresseClient from clients,commandes where clients.nomClient = commandes.nomClient and nomProduit = "brique" and quantite >=5 and quantite <=10 --OU select clients.nomClient,adresseClient from clients join commandes on clients.nomClient = commandes.nomClient where nomProduit = 'brique' and (quantite >= 5 and quantite <= 10);
quelqu'un peut il m'éclairer
merci d'avance
-----