MySQL SQL

MySQL WHERE

Filter rows with a condition.

Filter results

SELECT * FROM products
WHERE price > 500;

Only rows for which the condition is true are returned. Use IS NULL for null checks.