How to Convert a String to Uppercase in SQL Database: Standard SQL PostgreSQL Oracle MS SQL Server MySQL SQLite Operators: UPPER Table of Contents Problem: Example: Solution 1: Discussion: Problem: You would like to convert a string to uppercase in SQL. Example: Our database has a table named questionnaire with data in the following columns: id, first_name, last_name, and favorite_car. idfirst_namelast_namefavorite_car 1AlanJacksonHonda Civic 2ElisaThomsonTOYOTA Camry 3MaryMartinesNissan rogue 4ChrisBrownford focus 5AdamSpringRam PICKUP Our table stores the make and model of the favorite car for each person who filled out our questionnaire. Notice that the style in which these strings are written is inconsistent. Solution 1: SELECT UPPER(favorite_car) AS car FROM questionnaire; This query returns each car name in uppercase: car HONDA CIVIC TOYOTA CAMRY NISSAN ROGUE FORD FOCUS RAM PICKUP Discussion: If you want to display a string in uppercase, use the SQL UPPER() function. This function takes only one argument: the string column that you want to convert to uppercase. Recommended courses: SQL Basics SQL Practice Set Standard SQL Functions Recommended articles: Standard SQL Functions Cheat Sheet How to Use LIKE in SQL: SQL Pattern Matching 18 Useful Important SQL Functions to Learn ASAP SQL String Functions: A Complete Overview See also: How to Change Text to Lowercase in SQL How to Trim Strings in SQL How to Replace Part of a String in SQL Subscribe to our newsletter Join our monthly newsletter to be notified about the latest posts. Email address How Do You Write a SELECT Statement in SQL? What Is a Foreign Key in SQL? Enumerate and Explain All the Basic Elements of an SQL Query