Skip to content

Capitalizes the first letter of each word in a string.

func.initcap(<str>)
func.initcap('hello world')
┌───────────────┐
'Hello World'
└───────────────┘
INITCAP(<str>)
SELECT INITCAP('hello world');
┌─────────────┐
│ Hello World │
└─────────────┘