ms sql to uppercase code example
Example 1: uppercase and lowercase in sql
select UPPER('converted to upper');
select LOWER('CONVERTED TO LOWER');
Example 2: mssql to upper
UPPER ( character_expression )
select UPPER('converted to upper');
select LOWER('CONVERTED TO LOWER');
UPPER ( character_expression )