UCASE function (ODBC compatible)
Syntax
UCASE ( char_expression )
Description
The scalar function UCASE returns the result of the argument character expression after converting all the characters to uppercase. UCASE is identical to UPPER, but provides ODBC-compatible syntax.
Example
SELECT *
FROM customer
WHERE UCASE (name) = 'SMITH' ;
Notes