SqlExpression UPPER
From Eigenpedia
Contents |
Syntax
UPPER( source_string )
Purpose
Converts a string to all uppercase characters
Input
- source_string - string to convert to uppercase
Output
- [VARCHAR] - source_string with all characters converted to uppercase. Returns null if source_string is null and empty string for empty string
Example
| Function | Result |
|---|---|
| UPPER('abdsrIRISfsdfs2134*&') | ABDSRIRISFSDFS2134*& |
| UPPER( ) |

