Al Programming
Free source code programming in C#, VB.Net, Java, SQL
Search This Blog
Monday, February 3, 2014
LEFT SQL Server Example
SQL Server
>
Built-in Functions
>
LEFT
Returns the left part of a string with the specified number of characters.
Example:
declare
@str
nvarchar
(
max
)
set
@str
=
'SQL Server'
select
left(
@str
,
3
)
result:
SQL
Newer Post
Older Post
Home