Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Afficher les produits dont le nom commence par 'S' :
SELECT * FROM achats WHERE produit LIKE '%S%';
SELECT * FROM achats WHERE produit STARTS WITH 'S';
SELECT * FROM achats WHERE produit LIKE 'S%';
SELECT * FROM achats WHERE produit = '%S';
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!