Preamble
The Oracle/PLSQL UPPER function converts all characters of a string into upper case. If there are characters in a string that are not letters, they do not affect this function.
Syntax of the Oracle/PLSQL UPPER function
UPPER( string1_id )
Parameters and function arguments
- string1_id – a string to convert to upper case.
The function UPPER returns a string value.
See also the LOWER function.
The UPPER function can be used in the following versions of Oracle/PLSQL
|
Oracle 12c, Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
|
Let’s consider some examples of the UPPER function and learn how to use UPPER function in Oracle/PLSQL.
SQL> SELECT UPPER('Charles Dickens') FROM DUAL;
--Result: CHARLES DICKENS
SQL> SELECT UPPER('Charles Dickens 1812 - 1870 ') FROM DUAL;
--Result: CHARLES DICKENS 1812 - 1870
Q&A
Question:
How do I combine the Oracle UPPER function with LIKE? I try to query text fields of all records containing the word ‘test’. The problem is that it can be entered in one of the following ways: ‘TEST’, ‘Test’ or ‘test’.
The answer is:
To answer this question, let’s look at an example.
Let us assume that we have a table with suppliers in the field called supplier_name that contains values, ‘TEST’, ‘Test’ or ‘test’.
If we wanted to find all entries that contain the word ‘test’, regardless of whether it is stored as ‘TEST’, ‘Test’ or ‘test’, we could run one of the following SQL queries:
select *
from suppls
where UPPER(suppl_name) like ('TEST%');
or
select *
from suppls
where UPPER(suppl_name) like UPPER('test%')
These SQL queries use a combination of the UPPER function and the LIKE condition, and return all records where the supplier_name field contains the word ‘test’, regardless of whether it was ‘TEST’, ‘Test’ or ‘test’.
The Oracle UPPER function is used to convert a string to an uppercase value
About Enteros
Enteros offers a patented database performance management SaaS platform. It proactively identifies root causes of complex business-impacting database scalability and performance issues across a growing number of clouds, RDBMS, NoSQL, and machine learning database platforms.
The views expressed on this blog are those of the author and do not necessarily reflect the opinions of Enteros Inc. This blog may contain links to the content of third-party sites. By providing such links, Enteros Inc. does not adopt, guarantee, approve, or endorse the information, views, or products available on such sites.
Are you interested in writing for Enteros’ Blog? Please send us a pitch!
RELATED POSTS
Accurate Healthcare Cost Estimation with Enteros: AIOps-Driven Cloud FinOps Intelligence
- 8 January 2026
- Database Performance Management
Introduction Healthcare organizations are under unprecedented financial pressure. Rising infrastructure costs, shrinking operating margins, value-based care models, regulatory compliance, and accelerating digital transformation have fundamentally changed how healthcare IT must be managed. From electronic health records (EHRs) and clinical analytics platforms to telehealth, patient portals, AI-driven diagnostics, and population health systems—healthcare now runs on complex, … Continue reading “Accurate Healthcare Cost Estimation with Enteros: AIOps-Driven Cloud FinOps Intelligence”
The Future of Real Estate Technology Economics: Enteros’ Database Performance and FinOps Platform
Introduction The real estate industry is undergoing a profound digital transformation. Property marketplaces, brokerage platforms, commercial real estate systems, asset management applications, leasing platforms, and property management software now operate as always-on digital businesses. Buyers, tenants, investors, and agents expect real-time listings, instant valuations, dynamic pricing, seamless transactions, and personalized experiences across web and mobile … Continue reading “The Future of Real Estate Technology Economics: Enteros’ Database Performance and FinOps Platform”
The New Cost Model for AI/ML Enterprises: Enteros’ AIOps and Cloud FinOps Intelligence
- 7 January 2026
- Database Performance Management
Introduction Artificial Intelligence and Machine Learning enterprises are redefining how modern businesses operate. From generative AI platforms and recommendation engines to predictive analytics, computer vision, and real-time decision systems, AI/ML workloads now sit at the core of digital innovation. However, as AI adoption accelerates, so does a less visible but equally critical challenge: the economics … Continue reading “The New Cost Model for AI/ML Enterprises: Enteros’ AIOps and Cloud FinOps Intelligence”
The Future of Healthcare RevOps: Enteros’ AI-Driven Database Optimization and Cost Intelligence
Introduction Healthcare organizations are under unprecedented pressure. Rising operational costs, shrinking margins, regulatory complexity, and increasing patient expectations are forcing hospitals, health systems, payers, and digital health platforms to rethink how they operate and grow. At the same time, healthcare is becoming increasingly digital. Electronic health records (EHRs), patient portals, telehealth platforms, revenue cycle management … Continue reading “The Future of Healthcare RevOps: Enteros’ AI-Driven Database Optimization and Cost Intelligence”