Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
Dan Gorman edited this page Nov 29, 2018 · 3 revisions

The UPPER Function

Function Group: Text

UPPER converts a given string to uppercase.

Syntax

UPPER(arg1)

  • arg1 is the string to be lowercased

Uses

Let's say we receive an api response , as below:

{  
   "data":{  
      "trip":{  
         "summary": "the trip was good as measured by standard metrics"
      }
   }
}

To make it uppercase, we can use UPPER:

UPPER(data.trip.summary)

which returns "THE TRIP WAS GOOD AS MEASURED BY STANDARD METRICS".

Notes

For a function that sets all characters in a string to lowercase, use LOWER

Clone this wiki locally