Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

PostgreSQL Basic SELECT Statement: Get the first three characters of the first name for all employees


12. Write a query to get the first three characters of the first name for all the employees in the employees table.

Sample Solution:

Code:

SELECT SUBSTRING(first_name,1,3) 
FROM employees;

Sample table: employees


Output:

pg_exercises=# SELECT SUBSTRING(first_name,1,3)
pg_exercises-# FROM employees;
 substring
-----------
 Ste
 Nee
 Lex
 Ale
 Bru
 Dav
 Val
 Dia
 Nan
 Dan
 Joh
 Ism
 Jos
 Lui
 Den
 Ale
 She
 Sig
 Guy
 Kar
 Mat
 Ada
 Pay
 Sha
 Kev
 ...
 Sus
 Her
 She
 Wil
(107 rows)

Practice Online



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a query to get all the first name from the employees table in upper case.
Next: Write a query to calculate the expression 171*214+625.

What is the difficulty level of this exercise?