Comment sélectionner tous les attributs à partir d'une ligne s'il y a une certaine chaîne dedans MySQL

SELECT column1, column2,...
FROM table_name
WHERE first_name = 'John' AND sales_in_year <= 50
Doubtful Dog