> For the complete documentation index, see [llms.txt](https://docs.e6data.com/product-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.e6data.com/product-documentation/~/changes/0iCkDjvnPldS7yucryRX/supported-data-types.md).

# Supported Data Types

* [ARRAY](#array)
* [BOOLEAN](#boolean)
* [DATE](#date)
* [DECIMAL](#decimal)
* [DOUBLE](#doable)
* [FLOAT](#float)
* [INT32](#int32)
* [INT64](#int64)
* [JSON](#json) *(as a string)*
* [STRING](#string)
* [STRUCT](#struct)

### ARRAY

An array of the given component type.

Examples:

* `ARRAY[1, 2, 3]`
* `select array[1,2,3,4]`

### BOOLEAN

Represents boolean values TRUE and FALSE

### DATE

Represents values having values of fields year, month, and day.

### DECIMAL

Represents the numbers with precision and a scale factor of x.

### DOUBLE

Represents x-byte single/variable-precision floating point numbers.

### FLOAT

Represents x-byte single/variable-precision floating point numbers.

### INT32

Represents a 32-bit signed two’s complement integer with a minimum value of $$-2^{31}$$ and a maximum value of $$2^{31}-1$$.

### INT64

Represents a 64-bit signed two’s complement integer with a minimum value of $$-2^{63}$$ and a maximum value of $$2^{63} - 1$$.

### JSON

JSON querying is supported when the JSON data is saved in the form of a string.

### STRING

Represents character string values.

### STRUCT

Represents values with the structure described by a sequence of fields.

Example:

* `struct({value:prod,dpid:51})`
* `select tablename.columnname.structfield1.structfield2 from tablename`


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.e6data.com/product-documentation/~/changes/0iCkDjvnPldS7yucryRX/supported-data-types.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
