UCASE

Learn how to use the UCASE string function in PlaidCloud Lakehouse. Converts a string to uppercase. Alias for UPPER - see syntax, examples, and output.

Converts a string to uppercase. Alias for UPPER.

Analyze Syntax

func.ucase(<str>)

Analyze Examples

func.ucase('hello')

┌─────────┐
 'HELLO'  
└─────────┘

SQL Syntax

UCASE(<str>)

SQL Examples

SELECT UCASE('hello');

┌───────┐
 HELLO  
└───────┘