| title | LOWER (Transact-SQL) | Microsoft Docs | ||||||
|---|---|---|---|---|---|---|---|
| ms.custom | |||||||
| ms.date | 03/13/2017 | ||||||
| ms.prod | sql | ||||||
| ms.prod_service | database-engine, sql-database, sql-data-warehouse, pdw | ||||||
| ms.reviewer | |||||||
| ms.technology | t-sql | ||||||
| ms.topic | language-reference | ||||||
| f1_keywords |
|
||||||
| dev_langs |
|
||||||
| helpviewer_keywords |
|
||||||
| ms.assetid | 1783352b-6852-4658-9d94-51963c59b9bf | ||||||
| author | MashaMSFT | ||||||
| ms.author | mathoma | ||||||
| manager | craigg | ||||||
| monikerRange | >=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||=sqlallproducts-allversions||>=sql-server-linux-2017||=azuresqldb-mi-current |
[!INCLUDEtsql-appliesto-ss2008-all-md]
Returns a character expression after converting uppercase character data to lowercase.
Transact-SQL Syntax Conventions
LOWER ( character_expression )
character_expression
Is an expression of character or binary data. character_expression can be a constant, variable, or column. character_expression must be of a data type that is implicitly convertible to varchar. Otherwise, use CAST to explicitly convert character_expression.
varchar or nvarchar
The following example uses the LOWER function, the UPPER function, and nests the UPPER function inside the LOWER function in selecting product names that have prices between $11 and $20.
-- Uses AdventureWorks
SELECT LOWER(SUBSTRING(EnglishProductName, 1, 20)) AS Lower,
UPPER(SUBSTRING(EnglishProductName, 1, 20)) AS Upper,
LOWER(UPPER(SUBSTRING(EnglishProductName, 1, 20))) As LowerUpper
FROM dbo.DimProduct
WHERE ListPrice between 11.00 and 20.00;
[!INCLUDEssResult]
Lower Upper LowerUpper
-------------------- --------------------- --------------------
minipump MINIPUMP minipump
taillights - battery TAILLIGHTS - BATTERY taillights - battery
Data Types (Transact-SQL)
String Functions (Transact-SQL)
UPPER (Transact-SQL)