Instruction
You're doing great! Next exercise coming your way!
Exercise
Select all data for cats whose Breed starts with an 'R', favourite toy starts with the word 'ball', and coloration name ends with an 'm'.
Stuck? Here's a hint!
To find the name of the Breed that starts with an 'R' you will need to use the '%' sign and LIKE keyword:
WHERE Breed LIKE 'R%'



