**Description**: instantaneous rate on a specific column. The last two samples in the specified time range are used to calculate instantaneous rate. If the last sample value is smaller, then only the last sample value is used instead of the difference between the last two sample values.
**Description**: anti-tangent of a specific column
**Return value type**: Double precision floating number
**Description**: The anti-cosine of a specific column
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Return value type**: Double if the input value is not NULL; or NULL if the input value is NULL
**Applicable data types**: Numeric types.
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**More explanations**:
- Since version 2.1.3.0, function IRATE can be used on stble with `GROUP BY`, i.e. timelines generated by `GROUP BY tbname` on a STable.
- Can't be used with tags
- Can't be used with aggregate functions
### SUM
#### CEIL
```
SELECT SUM(field_name) FROM tb_name [WHERE clause];
SELECT CEIL(field_name) FROM { tb_name | stb_name } [WHERE clause];
```
**Description**: The sum of a specific column in a table or STable
**Description**: The rounded up value of a specific column
**Return value type**: Double precision floating number or long integer
**Return value type**: Same as the column being used
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable data types**: Numeric types.
**Applicable table types**: table, STable
**Examples**:
**Applicable nested query**: Inner query and outer query
```
taos> SELECT SUM(current), SUM(voltage), SUM(phase) FROM meters;
**Description**: The linear regression function of the specified column and the timestamp column (primary key), `start_val` is the initial value and `step_val` is the step value.
**Description**: The log of a specific with `base` as the radix
**Return value type**: A string in the format of "(slope, intercept)"
**Return value type**: Double if the input value is not NULL; or NULL if the input value is NULL
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable data types**: Numeric types.
**Applicable table types**: table only
**Applicable table types**: table, STable
**Examples**:
**Applicable nested query**: Inner query and Outer query
```
taos> SELECT LEASTSQUARES(current, 1, 1) FROM d1001;
SELECT MODE(field_name) FROM tb_name [WHERE clause];
```
#### POW
**Description**:The value which has the highest frequency of occurrence. NULL is returned if there are multiple values which have highest frequency of occurrence. It can't be used on timestamp column or tags.
**Return value type**:Same as the data type of the column being operated upon
**Description**: The power of a specific column with `power` as the index
**Applicable column types**:Data types except for timestamp
**Return value type**: Double if the input value is not NULL; or NULL if the input value is NULL
**More explanations**:Considering the number of returned result set is unpredictable, it's suggested to limit the number of unique values to 100,000, otherwise error will be returned.
**Applicable data types**: Numeric types.
**Applicable version**:Since version 2.6.0.0
**Applicable table types**: table, STable
**Examples**:
**Applicable nested query**: Inner query and Outer query
```
taos> select voltage from d002;
voltage |
========================
1 |
1 |
2 |
19 |
Query OK, 4 row(s) in set (0.003545s)
**More explanations**:
taos> select mode(voltage) from d002;
mode(voltage) |
========================
1 |
Query OK, 1 row(s) in set (0.019393s)
```
- Can't be used with tags
- Can't be used with aggregate functions
### HYPERLOGLOG
#### ROUND
```
SELECT HYPERLOGLOG(field_name) FROM { tb_name | stb_name } [WHERE clause];
SELECT ROUND(field_name) FROM { tb_name | stb_name } [WHERE clause];
```
**Description**:The cardinal number of a specific column is returned by using hyperloglog algorithm.
**Description**: The rounded value of a specific column.
**Return value type**:Integer
**More explanations**: The restrictions are same as `CEIL` function.
**Applicable column types**:Any data type
#### SIN
**More explanations**: The benefit of using hyperloglog algorithm is that the memory usage is under control when the data volume is huge. However, when the data volume is very small, the result may be not accurate, it's recommented to use `select count(data) from (select unique(col) as data from table)` in this case.
**Description**: The anti-cosine of a specific column
**Description**:`elapsed` function can be used to calculate the continuous time length in which there is valid data. If it's used with `INTERVAL` clause, the returned result is the calcualted time length within each time window. If it's used without `INTERVAL` caluse, the returned result is the calculated time length within the specified time range. Please be noted that the return value of `elapsed` is the number of `time_unit` in the calculated time length.
**Return value type**: Double if the input value is not NULL; or NULL if the input value is NULL
**Return value type**:Double
**Applicable data types**: Numeric types.
**Applicable Column type**:Timestamp
**Applicable table types**: table, STable
**Applicable versions**:Sicne version 2.6.0.0
**Applicable nested query**: Inner query and Outer query
**Applicable tables**: table, STable, outter in nested query
**More explanations**:
**Explanations**:
-`field_name` parameter can only be the first column of a table, i.e. timestamp primary key.
- The minimum value of `time_unit` is the time precision of the database. If `time_unit` is not specified, the time precision of the database is used as the default ime unit.
- It can be used with `INTERVAL` to get the time valid time length of each time window. Please be noted that the return value is same as the time window for all time windows except for the first and the last time window.
-`order by asc/desc` has no effect on the result.
-`group by tbname` must be used together when `elapsed` is used against a STable.
-`group by` must NOT be used together when `elapsed` is used against a table or sub table.
- When used in nested query, it's only applicable when the inner query outputs an implicit timestamp column as the primary key. For example, `select elapsed(ts) from (select diff(value) from sub1)` is legal usage while `select elapsed(ts) from (select * from sub1)` is not.
- It can't be used with `leastsquares`, `diff`, `derivative`, `top`, `bottom`, `last_row`, `interp`.
- Can't be used with tags
- Can't be used with aggregate functions
## Selection Functions
### String Functions
When any select function is used, timestamp column or tag columns including `tbname` can be specified to show that the selected value are from which rows.
String functiosn take strings as input and output numbers or strings.
### MIN
#### CHAR_LENGTH
```
SELECT MIN(field_name) FROM {tb_name | stb_name} [WHERE clause];
SELECT CHAR_LENGTH(str|column) FROM { tb_name | stb_name } [WHERE clause]
```
**Description**: The minimum value of a specific column in a table or STable
**Description**: The length in number of characters of a string
**Return value type**: Same as the data type of the column being operated upon
**Return value type**: Integer
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable table types**: table, STable
**Examples**:
**Applicable nested query**: Inner query and Outer query
```
taos> SELECT MIN(current), MIN(voltage) FROM meters;
min(current) | min(voltage) |
======================================
10.20000 | 218 |
Query OK, 1 row(s) in set (0.001765s)
**More explanations**
taos> SELECT MIN(current), MIN(voltage) FROM d1001;
min(current) | min(voltage) |
======================================
10.30000 | 218 |
Query OK, 1 row(s) in set (0.000950s)
```
- If the input value is NULL, the output is NULL too
### MAX
#### CONCAT
```
SELECT MAX(field_name) FROM { tb_name | stb_name } [WHERE clause];
**Description**: The maximum value of a specific column of a table or STable
**Description**: The concatenation result of two or more strings, the number of strings to be concatenated is at least 2 and at most 8
**Return value type**: Same as the data type of the column being operated upon
**Return value type**: If all input strings are BINARY type, the result is BINARY type too. If any one of input strings is NCHAR type, then the result is NCHAR.
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable data types**: BINARY, NCHAR. Can't be used on tag columns. At least 2 input strings are requird, and at most 8 input strings are allowed.
**Applicable table types**: table, STable
**Examples**:
```
taos> SELECT MAX(current), MAX(voltage) FROM meters;
max(current) | max(voltage) |
======================================
13.40000 | 223 |
Query OK, 1 row(s) in set (0.001123s)
taos> SELECT MAX(current), MAX(voltage) FROM d1001;
max(current) | max(voltage) |
======================================
12.60000 | 221 |
Query OK, 1 row(s) in set (0.000987s)
```
**Applicable nested query**: Inner query and Outer query
### FIRST
#### CONCAT_WS
```
SELECT FIRST(field_name) FROM { tb_name | stb_name } [WHERE clause];
**Description**: The first non-null value of a specific column in a table or STable
**Description**: The concatenation result of two or more strings with separator, the number of strings to be concatenated is at least 3 and at most 9
**Return value type**: Same as the column being operated upon
**Return value type**: If all input strings are BINARY type, the result is BINARY type too. If any one of input strings is NCHAR type, then the result is NCHAR.
**Applicable column types**: Any data type
**Applicable data types**: BINARY, NCHAR. Can't be used on tag columns. At least 3 input strings are requird, and at most 9 input strings are allowed.
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**More explanations**:
- FIRST(\*) can be used to get the first non-null value of all columns
- NULL will be returned if all the values of the specified column are all NULL
- A result will NOT be returned if all the columns in the result set are all NULL
- If the value of `separator` is NULL, the output is NULL. If the value of `separator` is not NULL but other input are all NULL, the output is empty string.
SELECT LAST(field_name) FROM { tb_name | stb_name } [WHERE clause];
SELECT LENGTH(str|column) FROM { tb_name | stb_name } [WHERE clause]
```
**Description**: The last non-NULL value of a specific column in a table or STable
**Description**: The length in bytes of a string
**Return value type**: Same as the column being operated upon
**Return value type**: Integer
**Applicable column types**: Any data type
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable table types**: table, STable
**More explanations**:
- LAST(\*) can be used to get the last non-NULL value of all columns
- If the values of a column in the result set are all NULL, NULL is returned for that column; if all columns in the result are all NULL, no result will be returned.
- When it's used on a STable, if there are multiple values with the timestamp in the result set, one of them will be returned randomly and it's not guaranteed that the same value is returned if the same query is run multiple times.
**Examples**:
**Applicable nested query**: Inner query and Outer query
SELECT LOWER(str|column) FROM { tb_name | stb_name } [WHERE clause]
```
**Description**: The greatest _k_ values of a specific column in a table or STable. If a value has multiple occurrences in the column but counting all of them in will exceed the upper limit _k_, then a part of them will be returned randomly.
**Description**: Convert the input string to lower case
**Return value type**: Same as the column being operated upon
**Return value type**: Same as input
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable table types**: table, STable
**More explanations**:
- _k_ must be in range [1,100]
- The timestamp associated with the selected values are returned too
- Can't be used with `FILL`
**Examples**:
**Applicable nested query**: Inner query and Outer query
```
taos> SELECT TOP(current, 3) FROM meters;
ts | top(current, 3) |
=================================================
2018-10-03 14:38:15.000 | 12.60000 |
2018-10-03 14:38:16.600 | 13.40000 |
2018-10-03 14:38:16.800 | 12.30000 |
Query OK, 3 row(s) in set (0.001548s)
**More explanations**
taos> SELECT TOP(current, 2) FROM d1001;
ts | top(current, 2) |
=================================================
2018-10-03 14:38:15.000 | 12.60000 |
2018-10-03 14:38:16.800 | 12.30000 |
Query OK, 2 row(s) in set (0.000810s)
```
- If the input value is NULL, the output is NULL too
SELECT LTRIM(str|column) FROM { tb_name | stb_name } [WHERE clause]
```
**Description**: The least _k_ values of a specific column in a table or STable. If a value has multiple occurrences in the column but counting all of them in will exceed the upper limit _k_, then a part of them will be returned randomly.
**Description**: Remove the left leading blanks of a string
**Return value type**: Same as the column being operated upon
**Return value type**: Same as input
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable table types**: table, STable
**More explanations**:
- _k_ must be in range [1,100]
- The timestamp associated with the selected values are returned too
- Can't be used with `FILL`
**Examples**:
**Applicable nested query**: Inner query and Outer query
```
taos> SELECT BOTTOM(voltage, 2) FROM meters;
ts | bottom(voltage, 2) |
===============================================
2018-10-03 14:38:15.000 | 218 |
2018-10-03 14:38:16.650 | 218 |
Query OK, 2 row(s) in set (0.001332s)
**More explanations**
taos> SELECT BOTTOM(current, 2) FROM d1001;
ts | bottom(current, 2) |
=================================================
2018-10-03 14:38:05.000 | 10.30000 |
2018-10-03 14:38:16.800 | 12.30000 |
Query OK, 2 row(s) in set (0.000793s)
```
- If the input value is NULL, the output is NULL too
### PERCENTILE
#### RTRIM
```
SELECT PERCENTILE(field_name, P) FROM { tb_name } [WHERE clause];
SELECT RTRIM(str|column) FROM { tb_name | stb_name } [WHERE clause]
```
**Description**: The value whose rank in a specific column matches the specified percentage. If such a value matching the specified percentage doesn't exist in the column, an interpolation value will be returned.
**Description**: Remove the right tailing blanks of a string
**Return value type**: Double precision floating point
**Return value type**: Same as input
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable table types**: table
**Applicable table types**: table, STable
**More explanations**: _P_ is in range [0,100], when _P_ is 0, the result is same as using function MIN; when _P_ is 100, the result is same as function MAX.
**Applicable nested query**: Inner query and Outer query
**Examples**:
**More explanations**
```
taos> SELECT PERCENTILE(current, 20) FROM d1001;
percentile(current, 20) |
============================
11.100000191 |
Query OK, 1 row(s) in set (0.000787s)
```
- If the input value is NULL, the output is NULL too
### APERCENTILE
#### SUBSTR
```
SELECT APERCENTILE(field_name, P[, algo_type])
FROM { tb_name | stb_name } [WHERE clause]
SELECT SUBSTR(str,pos[,len]) FROM { tb_name | stb_name } [WHERE clause]
```
**Description**: Similar to `PERCENTILE`, but a simulated result is returned
**Description**: The sub-string starting from `pos` with length of `len` from the original string `str`
**Return value type**: Double precision floating point
**Return value type**: Same as input
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable table types**: table, STable
**More explanations**
- _P_ is in range [0,100], when _P_ is 0, the result is same as using function MIN; when _P_ is 100, the result is same as function MAX.
-**algo_type** can only be input as `default` or `t-digest`, if it's not specified `default` will be used, i.e. `apercentile(column_name, 50)` is same as `apercentile(column_name, 50, "default")`.
- When `t-digest` is used, `t-digest` sampling is used to calculate. It can be used from version 2.2.0.0.
**Nested query**: It can be used in both the outer query and inner query in a nested query.
```
taos> SELECT APERCENTILE(current, 20) FROM d1001;
apercentile(current, 20) |
============================
10.300000191 |
Query OK, 1 row(s) in set (0.000645s)
**Applicable nested query**: Inner query and Outer query
taos> select apercentile (count, 80, 'default') from stb1;
apercentile (c0, 80, 'default') |
==================================
601920857.210056424 |
Query OK, 1 row(s) in set (0.012363s)
**More explanations**:
taos> select apercentile (count, 80, 't-digest') from stb1;
apercentile (c0, 80, 't-digest') |
===================================
605869120.966666579 |
Query OK, 1 row(s) in set (0.011639s)
```
- If the input is NULL, the output is NULL
- Parameter `pos` can be an positive or negative integer; If it's positive, the starting position will be counted from the beginning of the string; if it's negative, the starting position will be counted from the end of the string.
- If `len` is not specified, it means from `pos` to the end.
### LAST_ROW
#### UPPER
```
SELECT LAST_ROW(field_name) FROM { tb_name | stb_name };
SELECT UPPER(str|column) FROM { tb_name | stb_name } [WHERE clause]
```
**Description**: The last row of a table or STable
**Description**: Convert the input string to upper case
**Return value type**: Same as the column being operated upon
**Return value type**: Same as input
**Applicable column types**: Any data type
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable table types**: table, STable
**More explanations**:
**Applicable nested query**: Inner query and Outer query
- When it's used against a STable, multiple rows with the same and largest timestamp may exist, in this case one of them is returned randomly and it's not guaranteed that the result is same if the query is run multiple times.
- Can't be used with `INTERVAL`.
**More explanations**
**Examples**:
- If the input value is NULL, the output is NULL too
```
taos> SELECT LAST_ROW(current) FROM meters;
last_row(current) |
=======================
12.30000 |
Query OK, 1 row(s) in set (0.001238s)
### Conversion Functions
taos> SELECT LAST_ROW(current) FROM d1002;
last_row(current) |
=======================
10.30000 |
Query OK, 1 row(s) in set (0.001042s)
```
This kind of functions convert from one data type to another one.
**Description**: It's used for type casting. The input parameter `expression` can be data columns, constants, scalar functions or arithmetic between them. Can't be used with tags, and can only be used in `select` clause.
**More explanations**
**Return value type**: The type specified by parameter `type_name`
-`INTERP` is used to get the value that matches the specified time slice from a column. If no such value exists an interpolation value will be returned based on `FILL` parameter.
- The input data of `INTERP` is the value of the specified column and a `where` clause can be used to filter the original data. If no `where` condition is specified then all original data is the input.
- The output time range of `INTERP` is specified by `RANGE(timestamp1,timestamp2)` parameter, with timestamp1<=timestamp2. timestamp1 is the starting point of the output time range and must be specified. timestamp2 is the ending point of the output time range and must be specified. If `RANGE` is not specified, then the timestamp of the first row that matches the filter condition is treated as timestamp1, the timestamp of the last row that matches the filter condition is treated as timestamp2.
- The number of rows in the result set of `INTERP` is determined by the parameter `EVERY`. Starting from timestamp1, one interpolation is performed for every time interval specified `EVERY` parameter. If `EVERY` parameter is not used, the time windows will be considered as no ending timestamp, i.e. there is only one time window from timestamp1.
- Interpolation is performed based on `FILL` parameter. No interpolation is performed if `FILL` is not used, that means either the original data that matches is returned or nothing is returned.
-`INTERP` can only be used to interpolate in single timeline. So it must be used with `group by tbname` when it's used on a STable. It can't be used with `GROUP BY` when it's used in the inner query of a nested query.
- The result of `INTERP` is not influenced by `ORDER BY TIMESTAMP`, which impacts the output order only..
**Applicable data types**:
**Examples**: Based on the `meters` schema used throughout the documents
- Parameter `expression` can be any data type except for JSON, more specifically it can be any of BOOL/TINYINT/SMALLINT/INT/BIGINT/FLOAT/DOUBLE/BINARY(M)/TIMESTAMP/NCHAR(M)/TINYINT UNSIGNED/SMALLINT UNSIGNED/INT UNSIGNED/BIGINT UNSIGNED
- The output data type specified by `type_name` can only be one of BIGINT/BINARY(N)/TIMESTAMP/NCHAR(N)/BIGINT UNSIGNED
- Single point linear interpolation between "2017-07-14 18:40:00" and "2017-07-14 18:40:00:
**More explanations**:
```
taos> SELECT INTERP(current) FROM t1 RANGE('2017-7-14 18:40:00','2017-7-14 18:40:00') FILL(LINEAR);
```
- Error will be reported for unsupported type casting
- NULL will be returned if the input value is NULL
- Some values of some supported data types may not be casted, below are known issues:
1)When casting BINARY/NCHAR to BIGINT/BIGINT UNSIGNED, some characters may be treated as illegal, for example "a" may be converted to 0.
2)There may be overflow when casting singed integer or TIMESTAMP to unsigned BIGINT
3)There may be overflow when casting unsigned BIGINT to BIGINT
4)There may be overflow when casting FLOAT/DOUBLE to BIGINT or UNSIGNED BIGINT
- Get original data every 5 seconds, no interpolation, between "2017-07-14 18:00:00" and "2017-07-14 19:00:00:
#### TO_ISO8601
```
taos> SELECT INTERP(current) FROM t1 RANGE('2017-7-14 18:00:00','2017-7-14 19:00:00') EVERY(5s);
**Description**: The value of a specific column that matches the specified time slice
**Description**: Convert a JSON string to a JSON body。
**Return value type**: Same as the column being operated upon
**Return value type**: JSON
**Applicable column types**: Numeric data type
**Applicable column types**: JSON string, in the format like '{ "literal" : literal }'. '{}' is NULL value. keys in the string must be string constants, values can be constants of numeric types, bool, string or NULL. Escaping characters are not allowed in the JSON string.
**Applicable table types**: table, STable
**More explanations**:
**Applicable nested query**: Inner query and Outer query.
- Time slice must be specified. If there is no data matching the specified time slice, interpolation is performed based on `FILL` parameter. Conditions such as tags or `tbname` can be used `Where` clause can be used to filter data.
- The timestamp specified must be within the time range of the data rows of the table or STable. If it is beyond the valid time range, nothing is returned even with `FILL` parameter.
-`INTERP` can be used to query only single time point once. `INTERP` can be used with `EVERY` to get the interpolation value every time interval.
-**Examples**:
#### TO_UNIXTIMESTAMP
```
taos> SELECT INTERP(*) FROM meters WHERE ts='2017-7-14 18:40:00.004';
If there is no data corresponding to the specified timestamp, an interpolation value is returned if interpolation policy is specified by `FILL` parameter; or nothing is returned.
**Description**: UNIX timestamp converted from a string of date/time format
```
taos> SELECT INTERP(*) FROM meters WHERE tbname IN ('d636') AND ts='2017-7-14 18:40:00.005';
Query OK, 0 row(s) in set (0.004022s)
**Return value type**: Long integer
taos> SELECT INTERP(*) FROM meters WHERE tbname IN ('d636') AND ts='2017-7-14 18:40:00.005' FILL(PREV);
**Applicable column types**: Constant or column of BINARY/NCHAR
Interpolation is performed every 5 milliseconds between `['2017-7-14 18:40:00', '2017-7-14 18:40:00.014']`
**Applicable table types**: table, STable
```
taos> SELECT INTERP(current) FROM d636 WHERE ts>='2017-7-14 18:40:00' AND ts<='2017-7-14 18:40:00.014' EVERY(5a);
ts | interp(current) |
=================================================
2017-07-14 18:40:00.000 | 10.04179 |
2017-07-14 18:40:00.010 | 10.16123 |
Query OK, 2 row(s) in set (0.003487s)
```
**More explanations**:
### TAIL
- The input string must be compatible with ISO8601/RFC3339 standard, 0 will be returned if the string can't be converted
- The precision of the returned timestamp is same as the precision set for the current data base in use
```
SELECT TAIL(field_name, k, offset_val) FROM {tb_name | stb_name} [WHERE clause];
```
### DateTime Functions
**Description**: The next _k_ rows are returned after skipping the last `offset_val` rows, NULL values are not ignored. `offset_val` is optional parameter. When it's not specified, the last _k_ rows are returned. When `offset_val` is used, the effect is same as `order by ts desc LIMIT k OFFSET offset_val`.
This kind of functiosn oeprate on timestamp data. NOW(), TODAY() and TIMEZONE() are executed only once even though they may occurr multiple times in a single SQL statement.
**Parameter value range**: k: [1,100] offset_val: [0,100]
#### NOW
**Return value type**: Same as the column being operated upon
**Description**: The values that occur the first time in the specified column. The effect is similar to `distinct` keyword, but it can also be used to match tags or timestamp.
**Description**: The difference between two timestamps, and rounded to the time unit specified by `time_unit`
**Return value type**: Same as the column or tag being operated upon
**Return value type**: Long Integer
**Applicable column types**: Any data types except for timestamp
**Applicable column types**: UNIX timestamp constant, string constant of date/time format, or a column of TIMESTAMP type
**Applicable versions**: Since version 2.6.0.0
**Applicable table types**: table, STable
**More explanations**:
- It can be used against table or STable, but can't be used together with time window, like `interval`, `state_window` or `session_window` .
- Considering the number of result sets is unpredictable, it's suggested to limit the distinct values under 100,000 to control the memory usage, otherwise error will be returned.
**Description**: The different of each row with its previous row for a specific column. `ignore_negative` can be specified as 0 or 1, the default value is 1 if it's not specified. `1` means negative values are ignored.
**Description**: Truncate the input timestamp with unit specified by `time_unit`
**Return value type**: Same as the column being operated upon
**Return value type**: TIMESTAMP
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable column types**: UNIX timestamp constant, string constant of date/time format, or a column of timestamp
**Applicable table types**: table, STable
**More explanations**:
- The number of result rows is the number of rows subtracted by one, no output for the first row
- Since version 2.1.30, `DIFF` can be used on STable with `GROUP by tbname`
-Since version 2.6.0, `ignore_negative` parameter is supported
**Description**: The timezone of the client side system
```
SELECT DERIVATIVE(field_name, time_interval, ignore_negative) FROM tb_name [WHERE clause];
```
**Return value type**: BINARY
**Description**: The derivative of a specific column. The time rage can be specified by parameter `time_interval`, the minimum allowed time range is 1 second (1s); the value of `ignore_negative` can be 0 or 1, 1 means negative values are ignored.
**Return value type**: Double precision floating point
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable column types**: None
**Applicable table types**: table, STable
**More explanations**:
- It is available from version 2.1.3.0, the number of result rows is the number of total rows in the time range subtracted by one, no output for the first row.
- It can be used together with `GROUP BY tbname` against a STable.
- The precision of the returned timestamp is same as the precision set for the current data base in use
```
taos> SELECT SPREAD(voltage) FROM meters;
spread(voltage) |
============================
5.000000000 |
Query OK, 1 row(s) in set (0.001792s)
## Aggregate Functions
taos> SELECT SPREAD(voltage) FROM d1001;
spread(voltage) |
============================
3.000000000 |
Query OK, 1 row(s) in set (0.000836s)
```
Aggregate functions return single result row for each group in the query result set. Groups are determined by `GROUP BY` clause or time window clause if they are used; or the whole result is considered a group if neither of them is used.
### CEIL
### AVG
```
SELECT CEIL(field_name) FROM { tb_name | stb_name } [WHERE clause];
SELECT AVG(field_name) FROM tb_name [WHERE clause];
```
**Description**: The rounded up value of a specific column
**Description**: Get the average value of a column in a table or STable
**Return value type**: Same as the column being used
**Return value type**: Double precision floating number
**Applicable data types**: Data types except for timestamp, binary, nchar, bool
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and outer query
**More explanations**:
- Can't be used on any tags of any type
- Arithmetic operation can be performed on the result of `ceil` function
- Can't be used with aggregate functions
### FLOOR
### COUNT
```
SELECT FLOOR(field_name) FROM { tb_name | stb_name } [WHERE clause];
SELECT COUNT([*|field_name]) FROM tb_name [WHERE clause];
```
**Description**: The rounded down value of a specific column
**Description**: Get the number of rows or the number of non-null values in a table or a super table.
**More explanations**: The restrictions are same as those of the `CEIL` function.
**Return value type**: Long integer INT64
### ROUND
**Applicable column types**: All
```
SELECT ROUND(field_name) FROM { tb_name | stb_name } [WHERE clause];
```
**Applicable table types**: table, super table, sub table
**Description**: The rounded value of a specific column.
**More explanation**:
**More explanations**: The restrictions are same as `CEIL` function.
- Wildcard (\*) is used to represent all columns. The `COUNT` function is used to get the total number of all rows.
- The number of non-NULL values will be returned if this function is used on a specific column.
**Description**: The cumulative sum of each row for a specific column. The number of output rows is same as that of the input rows.
**Description**:`elapsed` function can be used to calculate the continuous time length in which there is valid data. If it's used with `INTERVAL` clause, the returned result is the calcualted time length within each time window. If it's used without `INTERVAL` caluse, the returned result is the calculated time length within the specified time range. Please be noted that the return value of `elapsed` is the number of `time_unit` in the calculated time length.
**Return value type**: Long integer for integers; Double for floating points. Timestamp is returned for each row.
**Return value type**:Double
**Applicable data types**: Data types except for timestamp, binary, nchar, and bool
**Applicable Column type**:Timestamp
**Applicable table types**: table, STable
**Applicable tables**: table, STable, outter in nested query
**Applicable nested query**: Inner query and Outer query
**Explanations**:
**More explanations**:
-`field_name` parameter can only be the first column of a table, i.e. timestamp primary key.
- The minimum value of `time_unit` is the time precision of the database. If `time_unit` is not specified, the time precision of the database is used as the default ime unit.
- It can be used with `INTERVAL` to get the time valid time length of each time window. Please be noted that the return value is same as the time window for all time windows except for the first and the last time window.
-`order by asc/desc` has no effect on the result.
-`group by tbname` must be used together when `elapsed` is used against a STable.
-`group by` must NOT be used together when `elapsed` is used against a table or sub table.
- When used in nested query, it's only applicable when the inner query outputs an implicit timestamp column as the primary key. For example, `select elapsed(ts) from (select diff(value) from sub1)` is legal usage while `select elapsed(ts) from (select * from sub1)` is not.
- It can't be used with `leastsquares`, `diff`, `derivative`, `top`, `bottom`, `last_row`, `interp`.
- Can't be used on tags when it's used on STable
- Arithmetic operation can't be performed on the result of `csum` function
- Can only be used with aggregate functions
-`Group by tbname` must be used together on a STable to force the result on a single timeline
### LEASTSQUARES
**Applicable versions**: Since 2.3.0.x
```
SELECT LEASTSQUARES(field_name, start_val, step_val) FROM tb_name [WHERE clause];
```
### MAVG
**Description**: The linear regression function of the specified column and the timestamp column (primary key), `start_val` is the initial value and `step_val` is the step value.
**Return value type**: A string in the format of "(slope, intercept)"
**Description**: The moving average of continuous _k_ values of a specific column. If the number of input rows is less than _k_, nothing is returned. The applicable range is _k_ is [1,1000].
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Return value type**: Double precision floating point
**Applicable table types**: table only
**Applicable data types**: Data types except for timestamp, binary, nchar, and bool
### MODE
**Applicable nested query**: Inner query and Outer query
```
SELECT MODE(field_name) FROM tb_name [WHERE clause];
```
**Applicable table types**: table, STable
**Description**:The value which has the highest frequency of occurrence. NULL is returned if there are multiple values which have highest frequency of occurrence. It can't be used on timestamp column or tags.
**More explanations**:
**Return value type**:Same as the data type of the column being operated upon
- Arithmetic operation can't be performed on the result of `MAVG`.
- Can only be used with data columns, can't be used with tags.
- Can't be used with aggregate functions.
- Must be used with `GROUP BY tbname` when it's used on a STable to force the result on each single timeline.
**Applicable column types**:Data types except for timestamp
**Applicable versions**: Since 2.3.0.x
**More explanations**:Considering the number of returned result set is unpredictable, it's suggested to limit the number of unique values to 100,000, otherwise error will be returned.
**Description**: The anti-cosine of a specific column
### HYPERLOGLOG
**Return value type**: Double if the input value is not NULL; or NULL if the input value is NULL
```
SELECT HYPERLOGLOG(field_name) FROM { tb_name | stb_name } [WHERE clause];
```
**Applicable data types**: Data types except for timestamp, binary, nchar, bool
**Description**:The cardinal number of a specific column is returned by using hyperloglog algorithm.
**Applicable table types**: table, STable
**Return value type**:Integer
**Applicable nested query**: Inner query and Outer query
**Applicable column types**:Any data type
**Applicable versions**: From 2.6.0.0
**More explanations**: The benefit of using hyperloglog algorithm is that the memory usage is under control when the data volume is huge. However, when the data volume is very small, the result may be not accurate, it's recommented to use `select count(data) from (select unique(col) as data from table)` in this case.
**More explanations**:
### HISTOGRAM
- Can't be used with tags
- Can't be used with aggregate functions
```
SELECT HISTOGRAM(field_name,bin_type, bin_description, normalized) FROM tb_name [WHERE clause];
```
### ATAN
**Description**:Returns count of data points in user-specified ranges.
"infinity" - whether to add(-inf, inf)as start/end point in generated range of bins.
The above "log_bin" descriptor generates a set of bins:[-inf, 1.0, 2.0, 4.0, 8.0, 16.0, +inf].
**More explanations**:
3. normalized: setting to 1/0 to turn on/off result normalization.
- Can't be used with tags
- Can't be used with aggregate functions
## Selector Functions
### SIN
Selector functiosn choose one or more rows in the query result set to retrun according toe the semantics. You can specify to output ts column and other columns including tbname and tags so that you can easily know which rows the selected values belong to.
**Description**: The anti-cosine of a specific column
**Description**: Similar to `PERCENTILE`, but a simulated result is returned
**Return value type**: Double if the input value is not NULL; or NULL if the input value is NULL
**Return value type**: Double precision floating point
**Applicable data types**: Data types except for timestamp, binary, nchar, bool
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**
**More explanations**:
- _P_ is in range [0,100], when _P_ is 0, the result is same as using function MIN; when _P_ is 100, the result is same as function MAX.
-**algo_type** can only be input as `default` or `t-digest`, if it's not specified `default` will be used, i.e. `apercentile(column_name, 50)` is same as `apercentile(column_name, 50, "default")`.
- When `t-digest` is used, `t-digest` sampling is used to calculate.
- Can't be used with tags
- Can't be used with aggregate functions
**Nested query**: It can be used in both the outer query and inner query in a nested query.
**Description**: The anti-cosine of a specific column
**Description**: The least _k_ values of a specific column in a table or STable. If a value has multiple occurrences in the column but counting all of them in will exceed the upper limit _k_, then a part of them will be returned randomly.
**Return value type**: Double if the input value is not NULL; or NULL if the input value is NULL
**Return value type**: Same as the column being operated upon
**Applicable data types**: Data types except for timestamp, binary, nchar, bool
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**:
- Can't be used with tags
- Can't be used with aggregate functions
- _k_ must be in range [1,100]
- The timestamp associated with the selected values are returned too
-`INTERP` is used to get the value that matches the specified time slice from a column. If no such value exists an interpolation value will be returned based on `FILL` parameter.
- The input data of `INTERP` is the value of the specified column and a `where` clause can be used to filter the original data. If no `where` condition is specified then all original data is the input.
- The output time range of `INTERP` is specified by `RANGE(timestamp1,timestamp2)` parameter, with timestamp1<=timestamp2. timestamp1 is the starting point of the output time range and must be specified. timestamp2 is the ending point of the output time range and must be specified. If `RANGE` is not specified, then the timestamp of the first row that matches the filter condition is treated as timestamp1, the timestamp of the last row that matches the filter condition is treated as timestamp2.
- The number of rows in the result set of `INTERP` is determined by the parameter `EVERY`. Starting from timestamp1, one interpolation is performed for every time interval specified `EVERY` parameter. If `EVERY` parameter is not used, the time windows will be considered as no ending timestamp, i.e. there is only one time window from timestamp1.
- Interpolation is performed based on `FILL` parameter. No interpolation is performed if `FILL` is not used, that means either the original data that matches is returned or nothing is returned.
-`INTERP` can only be used to interpolate in single timeline. So it must be used with `group by tbname` when it's used on a STable. It can't be used with `GROUP BY` when it's used in the inner query of a nested query.
- The result of `INTERP` is not influenced by `ORDER BY TIMESTAMP`, which impacts the output order only..
SELECT LAST(field_name) FROM { tb_name | stb_name } [WHERE clause];
```
**Description**: The log of a specific with `base` as the radix
**Description**: The last non-NULL value of a specific column in a table or STable
**Return value type**: Double if the input value is not NULL; or NULL if the input value is NULL
**Return value type**: Same as the column being operated upon
**Applicable data types**: Data types except for timestamp, binary, nchar, bool
**Applicable column types**: Any data type
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**:
- Can't be used with tags
- Can't be used with aggregate functions
- LAST(\*) can be used to get the last non-NULL value of all columns
- If the values of a column in the result set are all NULL, NULL is returned for that column; if all columns in the result are all NULL, no result will be returned.
- When it's used on a STable, if there are multiple values with the timestamp in the result set, one of them will be returned randomly and it's not guaranteed that the same value is returned if the same query is run multiple times.
SELECT LAST_ROW(field_name) FROM { tb_name | stb_name };
```
**Description**: The absolute of a specific column
**Description**: The last row of a table or STable
**Return value type**: UBIGINT if the input value is integer; DOUBLE if the input value is FLOAT/DOUBLE
**Return value type**: Same as the column being operated upon
**Applicable data types**: Data types except for timestamp, binary, nchar, bool
**Applicable column types**: Any data type
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**:
-Can't be used with tags
- Can't be used with aggregate functions
-When it's used against a STable, multiple rows with the same and largest timestamp may exist, in this case one of them is returned randomly and it's not guaranteed that the result is same if the query is run multiple times.
**Description**: It's used for type casting. The input parameter `expression` can be data columns, constants, scalar functions or arithmetic between them. Can't be used with tags, and can only be used in `select` clause.
### PERCENTILE
**Return value type**: The type specified by parameter `type_name`
```
SELECT PERCENTILE(field_name, P) FROM { tb_name } [WHERE clause];
```
**Applicable data types**:
**Description**: The value whose rank in a specific column matches the specified percentage. If such a value matching the specified percentage doesn't exist in the column, an interpolation value will be returned.
- Parameter `expression` can be any data type except for JSON, more specifically it can be any of BOOL/TINYINT/SMALLINT/INT/BIGINT/FLOAT/DOUBLE/BINARY(M)/TIMESTAMP/NCHAR(M)/TINYINT UNSIGNED/SMALLINT UNSIGNED/INT UNSIGNED/BIGINT UNSIGNED
- The output data type specified by `type_name` can only be one of BIGINT/BINARY(N)/TIMESTAMP/NCHAR(N)/BIGINT UNSIGNED
**Return value type**: Double precision floating point
**Applicable versions**: From 2.6.0.0
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**More explanations**:
**Applicable table types**: table
- Error will be reported for unsupported type casting
- NULL will be returned if the input value is NULL
- Some values of some supported data types may not be casted, below are known issues:
1)When casting BINARY/NCHAR to BIGINT/BIGINT UNSIGNED, some characters may be treated as illegal, for example "a" may be converted to 0.
2)There may be overflow when casting singed integer or TIMESTAMP to unsigned BIGINT
3)There may be overflow when casting unsigned BIGINT to BIGINT
4)There may be overflow when casting FLOAT/DOUBLE to BIGINT or UNSIGNED BIGINT
**More explanations**: _P_ is in range [0,100], when _P_ is 0, the result is same as using function MIN; when _P_ is 100, the result is same as function MAX.
SELECT TAIL(field_name, k, offset_val) FROM {tb_name | stb_name} [WHERE clause];
```
**Description**: The concatenation result of two or more strings, the number of strings to be concatenated is at least 2 and at most 8
**Return value type**: Same as the columns being operated, BINARY or NCHAR; or NULL if all the input are NULL
**Applicable data types**: The input data must be in either all BINARY or in all NCHAR; can't be used on tag columns
**Description**: The next _k_ rows are returned after skipping the last `offset_val` rows, NULL values are not ignored. `offset_val` is optional parameter. When it's not specified, the last _k_ rows are returned. When `offset_val` is used, the effect is same as `order by ts desc LIMIT k OFFSET offset_val`.
**Applicable table types**: table, STable
**Parameter value range**: k: [1,100] offset_val: [0,100]
**Applicable nested query**: Inner query and Outer query
**Return value type**: Same as the column being operated upon
**Applicable versions**: From 2.6.0.0
**Applicable column types**: Any data type except form timestamp, i.e. the primary key
**Description**: The concatenation result of two or more strings with separator, the number of strings to be concatenated is at least 3 and at most 9
**Description**: The greatest _k_ values of a specific column in a table or STable. If a value has multiple occurrences in the column but counting all of them in will exceed the upper limit _k_, then a part of them will be returned randomly.
**Return value type**: Same as the columns being operated, BINARY or NCHAR; or NULL if all the input are NULL
**Return value type**: Same as the column being operated upon
**Applicable data types**: The input data must be in either all BINARY or in all NCHAR; can't be used on tag columns
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**:
- If the value of `separator` is NULL, the output is NULL. If the value of `separator` is not NULL but other input are all NULL, the output is empty string.
- _k_ must be in range [1,100]
- The timestamp associated with the selected values are returned too
- Can't be used with `FILL`
### LENGTH
### UNIQUE
```
SELECT LENGTH(str|column) FROM { tb_name | stb_name } [WHERE clause]
SELECT UNIQUE(field_name) FROM {tb_name | stb_name} [WHERE clause];
```
**Description**: The length in bytes of a string
**Return value type**: Integer
**Description**: The values that occur the first time in the specified column. The effect is similar to `distinct` keyword, but it can also be used to match tags or timestamp.
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Return value type**: Same as the column or tag being operated upon
**Applicable table types**: table, STable
**Applicable column types**: Any data types except for timestamp
**Applicable nested query**: Inner query and Outer query
**More explanations**:
**Applicable versions**: From 2.6.0.0
- It can be used against table or STable, but can't be used together with time window, like `interval`, `state_window` or `session_window` .
- Considering the number of result sets is unpredictable, it's suggested to limit the distinct values under 100,000 to control the memory usage, otherwise error will be returned.
**More explanations**
## Time-Series Specific Functions
- If the input value is NULL, the output is NULL too
TDengine provides a set of time-series specific functions to better meet the requirements in querying time-series data. In general databases, similar functionalities can only be achieved with much more complex syntax and much worse performance. TDengine provides these functionalities in builtin functions so that the burden on user side is minimized.
### CHAR_LENGTH
### CSUM
```
SELECT CHAR_LENGTH(str|column) FROM { tb_name | stb_name } [WHERE clause]
**Description**: The length in number of characters of a string
**Description**: The cumulative sum of each row for a specific column. The number of output rows is same as that of the input rows.
**Return value type**: Integer
**Return value type**: Long integer for integers; Double for floating points. Timestamp is returned for each row.
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable data types**: Data types except for timestamp, binary, nchar, and bool
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**
**More explanations**:
- If the input value is NULL, the output is NULL too
- Can't be used on tags when it's used on STable
- Arithmetic operation can't be performed on the result of `csum` function
- Can only be used with aggregate functions
-`Group by tbname` must be used together on a STable to force the result on a single timeline
### LOWER
### DERIVATIVE
```
SELECT LOWER(str|column) FROM { tb_name | stb_name } [WHERE clause]
SELECT DERIVATIVE(field_name, time_interval, ignore_negative) FROM tb_name [WHERE clause];
```
**Description**: Convert the input string to lower case
**Description**: The derivative of a specific column. The time rage can be specified by parameter `time_interval`, the minimum allowed time range is 1 second (1s); the value of `ignore_negative` can be 0 or 1, 1 means negative values are ignored.
**Return value type**: Same as input
**Return value type**: Double precision floating point
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**
**More explanations**:
- If the input value is NULL, the output is NULL too
- The number of result rows is the number of total rows in the time range subtracted by one, no output for the first row.
- It can be used together with `GROUP BY tbname` against a STable.
### UPPER
### DIFF
```
SELECT UPPER(str|column) FROM { tb_name | stb_name } [WHERE clause]
**Description**: Convert the input string to upper case
**Description**: The different of each row with its previous row for a specific column. `ignore_negative` can be specified as 0 or 1, the default value is 1 if it's not specified. `1` means negative values are ignored.
**Return value type**: Same as input
**Return value type**: Same as the column being operated upon
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**
**More explanations**:
- If the input value is NULL, the output is NULL too
- The number of result rows is the number of rows subtracted by one, no output for the first row
- It can be used on STable with `GROUP by tbname`
### LTRIM
### IRATE
```
SELECT LTRIM(str|column) FROM { tb_name | stb_name } [WHERE clause]
SELECT IRATE(field_name) FROM tb_name WHERE clause;
```
**Description**: Remove the left leading blanks of a string
**Description**: instantaneous rate on a specific column. The last two samples in the specified time range are used to calculate instantaneous rate. If the last sample value is smaller, then only the last sample value is used instead of the difference between the last two sample values.
**Return value type**: Same as input
**Return value type**: Double precision floating number
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable column types**: Data types except for timestamp, binary, nchar and bool
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**
**More explanations**:
- If the input value is NULL, the output is NULL too
- It can be used on stble with `GROUP BY`, i.e. timelines generated by `GROUP BY tbname` on a STable.
### RTRIM
### MAVG
```
SELECT RTRIM(str|column) FROM { tb_name | stb_name } [WHERE clause]
**Description**: Remove the right tailing blanks of a string
**Return value type**: Same as input
**Description**: The moving average of continuous _k_ values of a specific column. If the number of input rows is less than _k_, nothing is returned. The applicable range of _k_ is [1,1000].
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Return value type**: Double precision floating point
**Applicable table types**: table, STable
**Applicable data types**: Data types except for timestamp, binary, nchar, and bool
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**Applicable table types**: table, STable
**More explanations**
**More explanations**:
- If the input value is NULL, the output is NULL too
- Arithmetic operation can't be performed on the result of `MAVG`.
- Can only be used with data columns, can't be used with tags.
- Can't be used with aggregate functions.
- Must be used with `GROUP BY tbname` when it's used on a STable to force the result on each single timeline.
### SUBSTR
### SAMPLE
```
SELECT SUBSTR(str,pos[,len]) FROM { tb_name | stb_name } [WHERE clause]
**Description**: The sub-string starting from `pos` with length of `len` from the original string `str`
**Description**: _k_ sampling values of a specific column. The applicable range of _k_ is [1,10000]
**Return value type**: Same as input
**Return value type**: Same as the column being operated plus the associated timestamp
**Applicable data types**: BINARY or NCHAR, can't be used on tags
**Applicable data types**: Any data type except for tags of STable
**Applicable table types**: table, STable
**Applicable nested query**: Inner query and Outer query
**Applicable versions**: From 2.6.0.0
**More explanations**:
- If the input is NULL, the output is NULL
- Parameter `pos` can be an positive or negative integer; If it's positive, the starting position will be counted from the beginning of the string; if it's negative, the starting position will be counted from the end of the string.
- If `len` is not specified, it means from `pos` to the end.
- Arithmetic operation can't be operated on the result of `SAMPLE` function
- Must be used with `Group by tbname` when it's used on a STable to force the result on each single timeline
**Description**: The ISO8601 date/time format converted from a UNIX timestamp, plus the timezone of the client side system
**Return value type**: BINARY
**Applicable column types**: TIMESTAMP, constant or a column
**Applicable table types**: table, STable
**More explanations**:
- If the input is UNIX timestamp constant, the precision of the returned value is determined by the digits of the input timestamp
- If the input is a column of TIMESTAMP type, The precision of the returned value is same as the precision set for the current data base in use
**Description**:Return the current database being used. If the user doesn't specify database when logon and doesn't use `USE` SQL command to switch the datbase, this function returns NULL.