Skip to content

Latest commit

 

History

History
84 lines (68 loc) · 2.75 KB

File metadata and controls

84 lines (68 loc) · 2.75 KB

title: "UPPER (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.service: "" ms.component: "t-sql|functions" ms.reviewer: "" ms.suite: "sql" ms.technology:

  • "database-engine" ms.tgt_pltfrm: "" ms.topic: "language-reference" f1_keywords:
  • "UPPER_TSQL"
  • "UPPER" dev_langs:
  • "TSQL" helpviewer_keywords:
  • "UPPER function"
  • "characters [SQL Server], lowercase"
  • "converting lowercase to uppercase"
  • "uppercase characters [SQL Server]"
  • "characters [SQL Server], uppercase"
  • "lowercase characters" ms.assetid: 5ced55f7-ac89-4cf2-9465-f63f4dc480db caps.latest.revision: 26 author: "edmacauley" ms.author: "edmaca" manager: "craigg" ms.workload: "Active" monikerRange: ">= aps-pdw-2016 || = azuresqldb-current || = azure-sqldw-latest || >= sql-server-2016 || = sqlallproducts-allversions"

UPPER (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-all-md]

Returns a character expression with lowercase character data converted to uppercase.

Topic link icon Transact-SQL Syntax Conventions

Syntax

UPPER ( character_expression )  

Arguments

character_expression
Is an expression of character data. character_expression can be a constant, variable, or column of either character or binary data.

character_expression must be of a data type that is implicitly convertible to varchar. Otherwise, use CAST to explicitly convert character_expression.

Return Types

varchar or nvarchar

Examples

The following example uses the UPPER and RTRIM functions to return the last name of people in the dbo.DimEmployee table so that it is in uppercase, trimmed, and concatenated with the first name.

-- Uses AdventureWorks  
  
SELECT UPPER(RTRIM(LastName)) + ', ' + FirstName AS Name  
FROM dbo.DimEmployee  
ORDER BY LastName;  

Here is a partial result set.

Name
------------------------------
ABBAS, Syed
ABERCROMBIE, Kim
ABOLROUS, Hazem

See Also

Data Types (Transact-SQL)
String Functions (Transact-SQL)
LOWER (Transact-SQL)