Question: You need to write a query that returns all Employees that have a LastName starting with the letter A. Which `WHERE` clause should you use to fill in the blank in this query?

  1. `WHERE LastName = A*`
  2. `WHERE LastName = LIKE '%A%'`
  3. `WHERE LastName LIKE 'A%'`
  4. `WHERE LastName IN ('A*')`

Answer: The correct answer of the above question is Option C:`WHERE LastName LIKE 'A%'`