sql-referencesql-functionsfunctionsCHARACTER_LENGTHVersion: 0.0.1On this pageCHARACTER_LENGTHCategories: StringCHARACTER_LENGTHReturns the length of an input string.SyntaxCHARACTER_LENGTH(expression varchar) → int32expression: String expression to determine the length of.Examples{{< codeheader "CHARACTER_LENGTH example" >}}SELECT CHARACTER_LENGTH('DREMIO')-- 6