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

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

  2. SQL UPPER() Function - GeeksforGeeks

    Dec 20, 2024 · By using UPPER() in your queries, we can clean up inconsistent case usage in our database, standardize outputs, and simplify comparisons. From simple string manipulations to case-insensitive searches, the UPPER() function provides an efficient way to …

  3. SQL UPPER, LOWER, and INITCAP Function Guide, FAQ & Examples

    Jun 2, 2023 · Learn how to do it with the UPPER, LOWER, and INITCAP functions in this article. The SQL UPPER function converts a string to upper case. It takes a string input value and converts the characters to uppercase versions of each character. In short, it capitalises a string value. The SQL LOWER function converts a string to lowercase.

  4. SQL UPPER Function - SQL Tutorial

    The following query uses the UPPER function to retrieve data from the last_name column and convert it to uppercase: SELECT UPPER (last_name) formatted_last_name FROM employees ORDER BY formatted_last_name; Code language: SQL (Structured Query Language) ( sql )

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

    Sep 3, 2024 · 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;

  6. SQL UPPER Function Use and Examples - MSSQLTips.com - SQL

    5 days ago · The UPPER function is used to make to a string of characters or character expression all uppercase. Syntax UPPER(expression) Parameters. expression – this is the string or expression used that we require to make uppercase. Simple format example. The following example will make the string all uppercase. SELECT UPPER('hello world') as message

  7. UPPER () function in SQL Server - GeeksforGeeks

    Aug 30, 2024 · The UPPER() function in SQL Server is a useful tool for converting all characters in a string to uppercase. This function is essential for ensuring uniform text formatting and for performing case-insensitive comparisons.

  8. SQL Server UPPER() Function: Convert Strings to Uppercase

    Oct 26, 2024 · The SQL Server UPPER() function is a powerful and straightforward tool for converting strings to uppercase. This blog post provides a comprehensive guide on how to use the UPPER() function in your SQL Server queries, …

  9. SQL Server UPPER Function

    Summary: in this tutorial, you will learn how to use the SQL Server UPPER() function to convert a string to uppercase. The UPPER() function converts an input string into uppercase. The following shows the syntax of the UPPER() function: UPPER(input_string) Code language: SQL (Structured Query Language) (sql)

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

    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 detailed examples.

  11. Some results have been removed
Refresh