We can use conditions to select items where a property follows a pattern, like writers with a first_name starting with a.
writers
first_name
a
Make sure to pick WHERE, followed by first_name LIKE 'a%'.
WHERE
first_name LIKE 'a%'