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 up
You can do:
SELECT lower(FIRST NAME) ABC FROM PERSON
NOTE: ABC is used if you want to change the name of the column
ABC