Answers for "postgresql substring function"

SQL
0

postgresql certain first 4 characters in string

SELECT employee_id,first_name,
substring(first_name,1,4)
FROM employees;
Posted by: Guest on January-05-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language