PostgreSQL 4 karakter pertama tertentu dalam string

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