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 use LOWER function and UPPER function. Like
LOWER function
UPPER function
SELECT LOWER('THIS IS TEST STRING')
Result:
this is test string
And
SELECT UPPER('this is test string')
result:
THIS IS TEST STRING