INITCAP

Learn how to use the INITCAP string function in PlaidCloud Lakehouse. Capitalizes the first letter of each word in a string - with syntax and examples.

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  
└─────────────┘