MySQL SQL
MySQL OR
Match rows when at least one condition is true.
Use OR
SELECT * FROM products
WHERE category = 'Laptop' OR category = 'Tablet';Use parentheses to make the intended precedence explicit when mixing OR and AND.
Continue learning
MySQL SQL
Match rows when at least one condition is true.
SELECT * FROM products
WHERE category = 'Laptop' OR category = 'Tablet';Use parentheses to make the intended precedence explicit when mixing OR and AND.
Continue learning