I need to select all the records in a table where the letters of a particular column are in the uppercase (upper case).
Is there a function that differentiates between uppercase and lowercase in POSTGRES
?
Here is the image of my table:
The numero_fci
column has several records as alphanumeric characters, however, some records are in lowercase (lowercase) and SELECT
I would like to return only those that are in the uppercase.
How should I proceed?
Thank you!