Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

UCase

Example

Convert the text in the “CustomerName” to uppercase.

SELECT UCASE(CustomerName) AS UppercaseCustomerName
FROM Customers;

Definition and Usage

The UCase() function converts a string to uppercase.

Tip: Consider also using the LCase() function for converting to lowercase.

Syntax

UCase(text)

Parameter Values

Parameter

Description

text

Required: The string that you want to convert (to uppercase or lowercase).

Technical Details

Works in:

 From Access 2000