INITCAP (Lakehouse v2)
Capitalizes the first letter of each word in a string.
Analyze Syntax
Section titled “Analyze Syntax”func.initcap(<str>)Analyze Examples
Section titled “Analyze Examples”func.initcap('hello world')
┌───────────────┐│ 'Hello World' │└───────────────┘SQL Syntax
Section titled “SQL Syntax”INITCAP(<str>)SQL Examples
Section titled “SQL Examples”SELECT INITCAP('hello world');
┌─────────────┐│ Hello World │└─────────────┘