1/* AND is a operator that allows you to combine two conditions
2Both conditions must be true for the row to b e included in the result set */
3SELECT column_name(s)
4FROM table_name
5WHERE column_1 = value_1
6AND column_2 = value_2;
1Used to join separate conditions within a WHERE clause.
2Example: Returns events located in London, United Kingdom
3SELECT * FROM events
4WHERE host_country='United Kingdom' AND host_
5city='London';