len sql server code example
Example 1: sql string length
-- Relevant for SQL-Oracle only
-- syntax
LENGTH(<your-string>)
-- example
LENGTH('CountCharacters') -- OUTPUT: 15
123456789012345
-- example with query
SELECT 'CountCharacters',LENGTH('CountCharacters')
FROM DUAL;
-- OUTPUT: CountCharacters, 15
Example 2: lenght sql
SELECT LENGTH('exemple');