You can use the following methods supported by PostreSQL:
UPPER(string_expression)
Example:
SELECT
CONCAT (
UPPER (first_name),
UPPER (last_name)
) as full_name
FROM
staff;
Reference: http://www.postgresqltutorial.com/postgresql-letter-case-functions/