LENGTH

Returns the length of a string in bytes.

Analyze Syntax

func.length(<str>)

Analyze Examples

func.length('hello')

┌───┐
 5  
└───┘

SQL Syntax

LENGTH(<str>)

SQL Examples

SELECT LENGTH('hello');

┌───┐
 5  
└───┘