I am trying to write a query that will only return result from 3 different countries (Ireland, Germany, and Spain) from a table that contains 100's of different countries.
Here is the query I wrote that does not seem to be working.
My question is how do I write a where clause with more than one condition. Should I use 'OR' or 'AND'
Thanks in advance
-James
Here is the query I wrote that does not seem to be working.
Code:
Select bbc.name, bbc.population
from bbc
Where name='France','Germany','Spain'
My question is how do I write a where clause with more than one condition. Should I use 'OR' or 'AND'
Thanks in advance
-James