AND OR Example
suggest changeHave a table
Name| Age|City| —— | —— | —— | Bob| 10|Paris| Mat| 20|Berlin| Mary| 24|Prague|
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|
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents