PostgreSQL niektóre pierwsze 4 znaki w ciągu

SELECT employee_id,first_name,
substring(first_name,1,4)
FROM employees;
Courageous Cow