---
title: "How to convert any string into upper case in SQL Server?"  
description: "How to convert any string into upper case in SQL Server?"  
author: "Ashutosh Kumar Verma"  
published: 2021-11-17  
canonical: https://www.mindstick.com/interview/33830/how-to-convert-any-string-into-upper-case-in-sql-server  
category: "mssql server"  
tags: ["sql server", "sql"]  
reading_time: 1 minute  

---

# How to convert any string into upper case in SQL Server?

## UPPER():

SQL UPPER() function in used to convert any string in upper case.

Example:

```
SELECT UPPER('MindStick.com');
```

## Output:

MINDSTICK.COM

## Answers

### Answer by Ashutosh Kumar Verma

## UPPER():

SQL UPPER() function in used to convert any string in upper case.

Example:

```
SELECT UPPER('MindStick.com');
```

## Output:

MINDSTICK.COM


---

Original Source: https://www.mindstick.com/interview/33830/how-to-convert-any-string-into-upper-case-in-sql-server

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
