In this post , I will explain the LOWER function of SQL Server of string functions category.
In my previous posts, I explained STUFF Function, LEN Function, UNICODE Function, LEFT Function, CHARINDEX Function, CHAR Function, ASCII Function, Simple script to backup all SQL Server databases, Table-Valued Parameters and some other articles related to SQL Server.
Here, I am going to explain LOWER function of SQL Server.
In my previous posts, I explained STUFF Function, LEN Function, UNICODE Function, LEFT Function, CHARINDEX Function, CHAR Function, ASCII Function, Simple script to backup all SQL Server databases, Table-Valued Parameters and some other articles related to SQL Server.
Here, I am going to explain LOWER function of SQL Server.
LOWER() Function
This function is used to convert the character expression with upper case characters into lower case.
Syntax- LOWER(character_expression)
Arguments-
Arguments-
- character_expression : An expression of character data.
Example-
Declare @nstring varchar(50)
set @nstring='Dot Net World'
select LOWER(@nstring)
--OutPut dot net world
Fantastic blog and love this blog because this is the best way for me.
ReplyDelete