UPPERSQL{UPPER | UCASE} (string) Parameters string - an argument. Description UPPER is a function returns string, with all letters uppercase. Examples The following example returns last name in uppercase for each Player: SQLSELECT UPPER(last_name) "LastNameUpperCase" FROM Players; Updated almost 5 years ago Table of Contents Parameters Description Examples