This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
LOWER
Dan Gorman edited this page Nov 29, 2018
·
3 revisions
LOWER
converts a given string to lowercase.
LOWER(arg1)
-
arg1
is the string to be lowercased
If we get a response with a string that we would prefer lowercased, we can easily use LOWER
:
{
"data":{
"trip":{
"summary": "TRIP WAS GOOD AS MEASURED BY STANDARD METRICS"
}
}
}
To make it lowercase, we can use LOWER
:
LOWER(data.trip.summary)
which returns "trip was good as measured by standard metrics"
.
For a function that sets all characters in a string to uppercase, use UPPER