sql function to convert in uppercase and lower case code example
Example 1: uppercase and lowercase in sql
select UPPER('converted to upper');
select LOWER('CONVERTED TO LOWER');
Example 2: funktion LOWER/UPPER sql
LOWER/UPPER
LOWER wandelt eine String in eine in Kleinbuchstaben um.
UPPER ist das Gegenstück zu LOWER, und wandelt den String
in Grossbuchstaben um.
SELECT LOWER (expression)
SELECT UPPER (expression)