CAST keyword
Type conversion. Can be either:
- Explicit via
cast()
- Implicit, in which case it will be automatically performed when required by the context.
#
Syntaxwhere:
expression
can be a constant, a column, or an expression that evaluates to a value.type
refers to the desired data type.
cast
can be used a part of arithmetic expression as normal
#
Explicit conversionTypes can be converted from one to another using the cast()
function.
#
Examplescast | cast1 | cast2 | cast3 |
---|---|---|---|
5 | 2020-01-08T17:55:42.000000Z | 10.2 | 34892 |
Explicit casting of an expression to a smaller data type may result in loss of data when the output data type is smaller than the expression.
- Casting a decimal number type (
float
ordouble
) to an integer number type (long
,int
,short
) will result in decimals drop. - If the integer part being cast is larger than the resulting data type, it will be resized by truncating bits.
- Conversions from
char
to a number type will return the correspondingunicode
number and vice versa.
#
Precision loss examplescast | cast1 | cast2 |
---|---|---|
5 | 25663 | -24852 |
When casting numbers into a smaller data type, QuestDB will truncate the higher bits of this number.
#
Implicit conversionType casting may be necessary in certain context such as
- Operations involving various different types
- Inserting values where the originating type is different from the destination column type.
QuestDB will attempt to convert to the data type required by the context. This
is called implicit cast
and does not require using the cast()
function.
note
QuestDB will only perform implicit cast when they would not result in data being truncated or precision being lost.
The below chart illustrates the explicit and implicit cast available in QuestDB.
note
Implicit casting prevents data loss. When an operation involves multiple types, the resulting type will be the smallest possible type so that no data is lost.
column | column1 | column2 | column3 |
---|---|---|---|
1801 | 1234.567 | 2019-10-17T00:00:00.000323Z | 1571270400000000 |