COL_LENGTH (Transact-SQL)

**APPLIES TO:** ![yes](media/yes.png)SQL Server (starting with 2008) ![yes](media/yes.png)Azure SQL Database ![no](media/no.png)Azure SQL Data Warehouse ![no](media/no.png)Parallel Data Warehouse

This function returns the defined length of a column, in bytes.

Topic link icon Transact-SQL Syntax Conventions

Syntax

COL_LENGTH ( 'table' , 'column' )   

Arguments

table
The name of the table whose column length information we want to determine. table is an expression of type nvarchar.

column
The column name whose length we want to determine. column is an expression of type nvarchar.

Return type

smallint

Exceptions

Returns NULL on error, or if a caller does not have the correct permission to view the object.

In SQL Server a user can only view the metadata of securables that the user owns, or on which the user has been granted permission. This means that metadata-emitting, built-in functions such as COL_LENGTH might return NULL, if the user does not have correct permission on the object. See Metadata Visibility Configuration for more information.

Remarks

For varchar columns declared with the max specifier (varchar(max)), COL_LENGTH returns the value –1.

Examples

This example shows the return values for a column of type varchar(40) and a column of type nvarchar(40):

USE AdventureWorks2012;  
GO  
CREATE TABLE t1(c1 varchar(40), c2 nvarchar(40) );  
GO  
SELECT COL_LENGTH('t1','c1')AS 'VarChar',  
      COL_LENGTH('t1','c2')AS 'NVarChar';  
GO  
DROP TABLE t1;  

Here is the result set.

VarChar     NVarChar  
40          80  

See also

Expressions (Transact-SQL)
Metadata Functions (Transact-SQL)
COL_NAME (Transact-SQL)
COLUMNPROPERTY (Transact-SQL)