HOW TO SLECT A particular VALUE IN COLUMN IN MYSQL code example
Example: how to select all attributes from a row if there is a certain string in it MySQL
SELECT column1, column2,...
FROM table_name
WHERE first_name = 'John' AND sales_in_year <= 50
SELECT column1, column2,...
FROM table_name
WHERE first_name = 'John' AND sales_in_year <= 50