Como SQL para la segunda letra del apellido

SELECT first_name FROM table WHERE SUBSTR(last_name, 2, 1) = 'o'
Poised Polecat