Functions and Operators
Functions and Operators (DML)
Basic Mathematical Operators
Operator | Description |
| Returns |
| Returns negative value of |
| Sum of |
| Difference of |
| Product of |
| Quotient ( |
Mathematical Operator Precedence
Parenthesization
Multiplication and division
Addition and subtraction
Comparison Operators
Operator | Description |
| Equals |
| Not equals |
| Greater than |
| Greater than or equal to |
| Less than |
| Less than or equal to |
| Is a value within a range |
| Is a value not within a range |
| Is a value that is null |
| Is a value that is not null |
| Compare expressions x and y. If different, return x. If they are the same, return |
| True if a value resolves to TRUE. |
| True if a value resolves to FALSE. |
Mathematical Functions
Function | Description |
| Returns the absolute value of x |
| Returns the smallest integer not less than the argument |
| Converts radians to degrees |
| Returns the value of e to the power of x |
| Returns the largest integer not greater than the argument |
| Returns the natural logarithm of x |
| Returns the natural logarithm of x |
| Returns the base-10 logarithm of the specified float expression x |
| Returns the remainder of int x divided by int y |
| Returns the value of pi |
| Returns the value of x raised to the power of y |
| Converts degrees to radians |
| Rounds x to the nearest integer value, but does not change the data type. For example, the double value 4.1 rounds to the double value 4. |
| Rounds x to y decimal places |
| Returns the sign of x as -1, 0, 1 if x is negative, zero, or positive |
| Returns the square root of x. |
| Truncates x to y decimal places |
Trigonometric Functions
Function | Description |
| Returns the arc cosine of x |
| Returns the arc sine of x |
| Returns the arc tangent of x |
| Returns the arc tangent of x and y |
| Returns the cosine of x |
| Returns the cotangent of x |
| Returns the sine of x |
| Returns the tangent of x |
Geometric Functions
Function | Description |
| Calculates distance in meters between two WGS84 positions. |
| Converts WGS84 latitude to WGS84 Web Mercator x coordinate. |
| Converts WGS84 longitude to WGS84 Web Mercator y coordinate. |
String Functions
Function | Description |
| Returns the number of characters in a string |
| Returns the length of a string in bytes |
String functions only work with unencoded fields (ENCODING set tonone
).
Pattern-matching Functions
Name | Example | Description |
|
| Returns true if the string matches the pattern |
|
| Returns true if the string does not match the pattern |
|
| Case-insensitive LIKE |
|
| Lowercase string ending with r |
|
| cat or hat |
Usage Notes
The following wildcard characters are supported by LIKE
and ILIKE
:
%
matches any number of characters, including zero characters._
matches exactly one character.
Date/Time Functions
Function | Description |
| Truncates the timestamp to the specified date_part. Example:
|
| Returns the specified date_part from timestamp. Example:
|
| Adds or Subtracts count date_part units from a timestamp. Note that 'count' is enclosed in single quotes. Example:
|
| Returns the current timestamp. Example:
|
| Adds an interval of count date_part to timestamp or date and returns signed date_part units in the provided timestamp or date form. Example:
|
| Subtracts timestamp1 from timestamp2 and returns the result in signed date_part units. Example:
|
| Returns the difference between two dates, calculated to the lowest level of the date_part you specify. For example, if you set the date_part as DAY, only the year, month, and day are used to calculate the result. Other fields, such as hour and minute, are ignored. Example:
|
| Returns a date after a specified time/date interval has been added. Example:
|
| Returns a specified part of a given date or timestamp as an integer value. Note that 'interval' must be enclosed in single quotes. Example:
|
Usage Notes
Supported date_part types:
Supported interval types:
Accepted Date, Time, and Timestamp Formats
Datatype | Formats | Examples |
DATE | YYYY-MM-DD | 2013-10-31 |
DATE | MM/DD/YYYY | 10/31/2013 |
DATE | DD-MON-YY | 31-Oct-13 |
DATE | DD/Mon/YYYY | 31/Oct/2013 |
EPOCH | 1383262225 | |
TIME | HH:MM | 23:49 |
TIME | HHMMSS | 234901 |
TIME | HH:MM:SS | 23:49:01 |
TIMESTAMP | DATE TIME | 31-Oct-13 23:49:01 |
TIMESTAMP | DATETTIME | 31-Oct-13T23:49:01 |
TIMESTAMP | DATE:TIME | 11/31/2013:234901 |
TIMESTAMP | DATE TIME ZONE | 31-Oct-13 11:30:25 -0800 |
TIMESTAMP | DATE HH.MM.SS PM | 31-Oct-13 11.30.25pm |
TIMESTAMP | DATE HH:MM:SS PM | 31-Oct-13 11:30:25pm |
TIMESTAMP | 1383262225 |
Usage Notes
For two-digit years, years 69-99 are assumed to be previous century (for example, 1969), and 0-68 are assumed to be current century (for example, 2016).
For four-digit years, negative years (BC) are not supported.
Hours are expressed in 24-hour format.
When time components are separated by colons, you can write them as one or two digits.
Months are case insensitive. You can spell them out or abbreviate to three characters.
For timestamps, decimal seconds are ignored. Time zone offsets are written as +/-HHMM.
For timestamps, a numeric string is converted to +/- seconds since January 1, 1970. Supported timestamps range from -30610224000 (January 1, 1000) through 29379456000 (December 31, 2900).
On output, dates are formatted as YYYY-MM-DD. Times are formatted as HH:MM:SS.
Linux EPOCH values range from -30610224000 (1/1/1000) through 185542587100800 (1/1/5885487). Complete range in years: +/-5,883,517 around epoch.
Statistical and Aggregate Functions
Both double-precision (standard) and single-precision floating point statistical functions are provided. Single-precision functions run faster on GPUs but might cause overflow errors.
Double-precision FP Function | Single-precision FP Function | Description |
| Returns the average value of x | |
| Returns the count of the number of rows returned | |
| Returns the count of distinct values of x | |
| Returns the approximate count of distinct values of x with defined expected error rate e | |
| Returns the maximum value of x | |
| Returns the minimum value of x | |
| Returns the input value if there is only one distinct value in the input; otherwise, the query fails. | |
| Returns the sum of the values of x | |
| Returns one sample value from aggregated column x. For example, the following query returns population grouped by city, along with one value from the state column for each group: Note: This was previously | |
|
| Alias of CORR. Returns the coefficient of correlation of a set of number pairs. |
|
| Returns the coefficient of correlation of a set of number pairs. |
|
| Returns the population covariance of a set of number pairs. |
|
| Returns the sample covariance of a set of number pairs. |
|
| Alias of STDDEV_SAMP. Returns sample standard deviation of the value. |
|
| Returns the population standard the standard deviation of the value. |
|
| Returns the sample standard deviation of the value. |
|
| Alias of VAR_SAMP. Returns the sample variance of the value. |
|
| Returns the population variance sample variance of the value. |
|
| Returns the sample variance of the value. |
Usage Notes
COUNT(DISTINCT
x
)
, especially when used in conjunction with GROUP BY, can require a very large amount of memory to keep track of all distinct values in large tables with large cardinalities. To avoid this large overhead, use APPROX_COUNT_DISTINCT.APPROX_COUNT_DISTINCT(
x
,
e
)
gives an approximate count of the value x, based on an expected error rate defined in e. The error rate is an integer value from 1 to 100. The lower the value of e, the higher the precision, and the higher the memory cost. Select a value for e based on the level of precision required. On large tables with large cardinalities, consider usingAPPROX_COUNT_DISTINCT
when possible to preserve memory. When data cardinalities permit, OmniSci uses the precise implementation ofCOUNT(DISTINCT
x
)
forAPPROX_COUNT_DISTINCT
. Set the default error rate using the-hll-precision-bits
configuration parameter.Currently, OmniSci does not support grouping by non-dictionary-encoded strings. However, with the
SAMPLE
aggregate function, you can select non-dictionary-encoded strings that are presumed to be unique in a group. For example:If the aggregated column (user_description in the example above) is not unique within a group,
SAMPLE
selects a value that might be nondeterministic because of the parallel nature of OmniSci query execution.
User-Defined Functions
You can create your own C++ functions and use them in your SQL queries.
User-defined Functions (UDFs) require clang++ version 7 or higher.
UDFs currently allow any authenticated user to register and execute a runtime function. By default, runtime UDFs are globally disabled but can be enabled with the runtime flag
enable-runtime-udf
.
Create your function and save it in a .cpp file; for example, /var/lib/omnisci/udf_myFunction.cpp.
Add the UDF configuration flag to omnisci.conf. For example:
Use your function in a SQL query. For example:
Sample User-Defined Function
This function, udf_diff.cpp, returns the difference of two values from a table.
Code Commentary
Include the standard integer library, which supports the following datatypes:
bool
int8_t (cstdint), char
int16_t (cstdint), short
int32_t (cstdint), int
int64_t (cstdint), size_t
float
double
void
The next four lines are boilerplate code that allows OmniSci to determine whether the server is running with GPUs. OmniSci chooses whether it should compile the function inline to achieve the best possible performance.
The next line is the actual user-defined function, which returns the difference between INTEGER values x and y.
To run the udf_diff
function, add this line to your /var/lib/omnisci/omnisci.conf file (in this example, the .cpp file is stored at /var/lib/omnisci/udf_diff.cpp):
Restart the OmniSci server.
Use your command from an OmniSci SQL client to query, for example, a table named myTable that contains the INTEGER columns myInt1
and myInt2
.
OmniSci returns the difference as an INTEGER value.
Last updated