Instruction
Until now, we only worked with numbers in our WHERE clauses. Is it possible to use letters instead? Of course it is! Just remember to put your text in single quotes like this: 'example'.
If you wanted to know the age of all Smiths in your table, you could use the following code:
SELECT age FROM user WHERE name = 'Smith';
Note that the case of the letters matters, i.e. 'Smith' is different than 'SMITH'.
Exercise
Select all columns of all Ford cars from the table.
Stuck? Here's a hint!
Type:
SELECT * FROM car WHERE brand = 'Ford';



