Skip to content

AND & OR Operators

Have a table

NameAgeCity
Bob10Paris
Mat20Berlin
Mary24Prague
select Name from table where Age>10 AND City='Prague'

Gives

Name
Mary
select Name from table where Age=10 OR City='Prague'

Gives

Name
Bob
Mary
  • SELECT * FROM table WHERE (condition1) AND (condition2);
  • SELECT * FROM table WHERE (condition1) OR (condition2);