Instruction
First, let's take another look at the customers table. It contains some important columns that we didn't use in the previous part.
Exercise
For all customers from London, select the following columns:
customer_idfirst_order_idfirst_order_datelast_order_idlast_order_date
These column names should be self-explanatory.
Stuck? Here's a hint!
Use the following WHERE clause:
WHERE city = 'London'




