About 301,000 results
Open links in new tab
  1. SQL Server UPPER () Function - W3Schools

    Definition and Usage The UPPER () function converts a string to upper-case. Note: Also look at the LOWER () function. Syntax UPPER (text)

  2. UPPER (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · 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 …

  3. SQL UPPER () Function - GeeksforGeeks

    Nov 22, 2025 · The UPPER () function is a commonly used SQL string function that converts all lowercase letters in a string to uppercase. It helps maintain consistent text formatting and is …

  4. SQL UPPER Function Use and Examples - SQL Server Tips

    Apr 27, 2025 · Learn about the SQL Server UPPER function to make a string of characters all uppercase.

  5. SQL Server: UPPER Function - TechOnTheNet

    This SQL Server tutorial explains how to use the UPPER function in SQL Server (Transact-SQL) with syntax and examples. In SQL Server (Transact-SQL), the UPPER function converts all …

  6. Mastering the UPPER Function in SQL: A Comprehensive Guide

    What Is the UPPER Function? The UPPER function in SQL converts all characters in a string to uppercase. It’s a standardized function that processes text data, ensuring consistency in case …

  7. UPPERSQL Tutorial

    The SQL UPPER function is a string function that is used to convert all the characters of a string expression to uppercase. This function is used to standardize text data in a database, making …

  8. SQL Server UPPER () Function - TutorialsTeacher.com

    Returns the upper case string of type varchar or nvarchar. In this example, the UPPER () function is used with a table column LastName of Employee table. The UPPER () function converts the …

  9. Working with the SQL UPPER function - dbt Labs

    Dec 22, 2025 · Using the UPPER function on a string value will return the input as an all-uppercase string. It’s an effective way to create expected capitalization for certain string values …

  10. SQL UPPER () String Function - Syntax, Examples [4]

    In this tutorial, we will go through SQL UPPER () String function, its syntax, and how to use this function to converts all characters in a specified string to uppercase, with the help of well …