Returns the input expression with all the characters converted to uppercase.
Last updated 2 years ago
Was this helpful?
expression: String to convert to uppercase.
Examples
SELECT UPPER('a guide to data lakehouses') -- A GUIDE TO DATA LAKEHOUSES
SELECT DayOfWeek, UCASE(DayOfWeek) FROM eth.recent_blocks LIMIT 3 -- DayOfWeek, EXPR$1 -- Friday, FRIDAY -- Friday, FRIDAY -- Monday, MONDAY
UPPER is a synonym for .
UPPER
UCASE