LOWER() function in SQL Server

SQL Functions SQL Server
LOWER():- This function is used to convert the value of a column to lower case

 Syntax:-

 Select LOWER (string)
 
 or
 
 SELECT LOWER(column_name) FROM table_name

For example,

SELECT LOWER(‘Vivek Johari’)

Result:-

vivek johari

DMCA.com

Leave a Reply