Thread: Converting to uppercase

Converting to uppercase

From
JORGE MALDONADO
Date:
I have a script that inserts country names in a table but such names are in lowercase except the first letter. This is an example of what I have:
 
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Afganistan');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Africa del Sur');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Albania');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Alemania');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Andorra');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Angola');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Antigua y Barbuda');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Antillas Holandesas');
Is there a function that I can include in the INSERT statement in order to convert the country name to uppercase?
 
Respectfully,
Jorge Maldonado

Re: Converting to uppercase

From
Francisco Leovey
Date:
A simple ggogle search gives the answer
 
 


--- On Thu, 5/5/11, JORGE MALDONADO <jorgemal1960@gmail.com> wrote:

From: JORGE MALDONADO <jorgemal1960@gmail.com>
Subject: [NOVICE] Converting to uppercase
To: pgsql-novice@postgresql.org
Date: Thursday, May 5, 2011, 3:06 PM

I have a script that inserts country names in a table but such names are in lowercase except the first letter. This is an example of what I have:
 
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Afganistan');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Africa del Sur');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Albania');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Alemania');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Andorra');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Angola');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Antigua y Barbuda');
INSERT INTO chartsclub.cat_paises (pss_nombre) VALUES ('Antillas Holandesas');
Is there a function that I can include in the INSERT statement in order to convert the country name to uppercase?
 
Respectfully,
Jorge Maldonado

Re: Converting to uppercase

From
Jayadevan M
Date:
> Is there a function that I can include in the INSERT statement in
> order to convert the country name to uppercase?

>  
http://www.postgresql.org/docs/9.0/static/functions-string.html
upper(string)





DISCLAIMER:


"The information in this e-mail and any attachment is intended only for the person to whom it is addressed and may contain confidential and/or privileged material. If you have received this e-mail in error, kindly contact the sender and destroy all copies of the original communication. IBS makes no warranty, express or implied, nor guarantees the accuracy, adequacy or completeness of the information contained in this email or any attachment and is not liable for any errors, defects, omissions, viruses or for resultant loss or damage, if any, direct or indirect."