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 │
└───┘
Returns the length of a string in bytes.
func.length(<str>)
func.length('hello')
┌───┐
│ 5 │
└───┘
LENGTH(<str>)
SELECT LENGTH('hello');
┌───┐
│ 5 │
└───┘