UPPER

Description

Converts a string to uppercase (UPPER in Transact-SQL).

Sample Source Pattern

Syntax

UPPER( string_expression ) 

Examples

Code:

SELECT UPPER('you are a prediction of the good ones') AS [UPPER]

Output:

UPPER                                |
-------------------------------------+
YOU ARE A PREDICTION OF THE GOOD ONES|

Last updated