LOWER (SQL Server Compact)

Returns a character expression after converting uppercase character data to lowercase.

Syntax

LOWER (character_expression )

Arguments

  • character_expression
    An expression of character or binary data type, or a data type that is implicitly convertible to nvarcharor ntext.

Return Value

nvarchar or ntext

Example

The following example returns, in lowercase, the list of company names in the Customers table.

SELECT [Customer ID], LOWER([Company Name]) AS Expr1, City FROM Customers