SELECT * FROM pets WHERE Species IN ('cat', 'bunny', 'monkey') -- Filter for only cats, bunnies, and monkeys ORDER BY Species ASC, Name ASC;