Expand Minimize
8 out of 12 rated this helpful - Rate this topic

LEN (Transact-SQL)

Returns the number of characters of the specified string expression, excluding trailing blanks.

NoteNote

To return the number of bytes used to represent an expression, use the DATALENGTH function.

Topic link iconTransact-SQL Syntax Conventions


LEN (string_expression )
string_expression

Is the string expression to be evaluated. string_expression can be a constant, variable, or column of either character or binary data.

bigint if expression is of the varchar(max), nvarchar(max) or varbinary(max) data types; otherwise, int.

The following example selects the number of characters and the data in FirstName for people located in Australia.

USE AdventureWorks;
GO
SELECT LEN(FirstName) AS Length, FirstName, LastName 
FROM Sales.vIndividualCustomer
WHERE CountryRegionName = 'Australia';
GO
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.