SQL UPPER Function

Example

Convert the text to upper-case:

SELECT UPPER('SQL Tutorial is FUN!');

Definition and Usage

The UPPER() function converts a string to upper-case.

Note: Also look at the LOWER() function.

Syntax

UPPER(text)

Continue reading SQL UPPER Function