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