vote up 0 vote down star

How do you make a field in a sql select statement all upper or lower case?

Example:

select firstname from Person

How do I make firstname always return upper case and likewise always return lower case?

flag
What happens when you move to a database (or other repository - XML?) that does not support case changing? Consider doing this in code or performing case-insensitive operations. – ajmastrean Dec 4 '08 at 17:15
Thanks for the comment ajmastrean. I would fully agree with your statement and I rarely do any casing in SQL, which is why I forget how to do this from time to time when I do have a need it. – Joshua Hudson Dec 4 '08 at 17:26

3 Answers

vote up 4 vote down check
SELECT UPPER(firstname) FROM Person

SELECT LOWER(firstname) FROM Person
link|flag
I'm giving Jared the answer since this is closer to my asked question. – Joshua Hudson Dec 4 '08 at 17:08
vote up 1 vote down

SQL SERVER 2005:

print upper('hello');
print lower('HELLO');
link|flag
Perfect. Thank you Cirieno! I actually had this answer but wanted it to be documented on stack overflow since I only use this rarely I always forget it. :) – Joshua Hudson Dec 4 '08 at 17:07
vote up 3 vote down

LCASE or UCASE respectively.

Example:

SELECT UCASE(MyColumn) AS Upper, LCASE(MyColumn) AS Lower
FROM MyTable
link|flag
Is this for mysql? – Joshua Hudson Dec 4 '08 at 17:05
UCASE for lower and LCase for Upper? – Joshua Hudson Dec 4 '08 at 17:10
@Joshua - LCASE & UCASE are inherent within the SQL language itself not related to any specific implementation of SQL within a RDBMS. And I fixed the UCASE/LCASE for Lower/Upper thing. – Stephen Wrighton Dec 4 '08 at 17:12
Thank you. I gave you a up vote because you are right about ISO SQL vs an implementation. – Joshua Hudson Dec 4 '08 at 17:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.