Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Afficher les achats de smartphones contenant 'iPhone' dont le prix est supérieur à 800 € :
SELECT * FROM achats WHERE produit LIKE 'iPhone' OR montant > 800;
SELECT * FROM achats WHERE produit = 'iPhone' AND montant > 800;
SELECT * FROM achats WHERE produit LIKE 'iPhone%' AND montant >= 800;
SELECT * FROM achats WHERE produit LIKE '%iPhone%' AND montant > 800;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!