Al Programming
Free source code programming in C#, VB.Net, Java, SQL
Search This Blog
Monday, February 3, 2014
LEN SQL Server Example
SQL Server
>
Built-in Functions
>
LEN
Returns then length of string expression.
Example
declare
@str
nvarchar
(
max
)
set
@str
=
'SQL Server'
select
Len
(
@str
)
result:
10
Newer Post
Older Post
Home