December 2017
Beginner to intermediate
322 pages
6h 43m
English
Simple functions that operate on a single value and return a single value are known as scalar functions. SAQL provides many scalar functions for string manipulation. For example, UPPER capitalizes all characters in a string expression, as in the following query example:
select ehinput.timestamp, ehinput.vin, ehinput.speed, ehinput.outsidetemperature, UPPER(ehinput.city) as cityfrom ehinput
Note the uppercase values in column City:

Additional scalar functions include, but are not limited to:
Syntax: SUBSTRING ...
Read now
Unlock full access