Data Types
CeresDB implements table model, and the supported data types are similar to MySQL. The following table lists the mapping relationship between MySQL and CeresDB.
Support Data Type(case-insensitive)
| SQL | CeresDB |
|---|---|
| null | Null |
| timestamp | Timestamp |
| double | Double |
| float | Float |
| string | String |
| Varbinary | Varbinary |
| uint64 | UInt64 |
| uint32 | UInt32 |
| uint16 | UInt16 |
| uint8 | UInt8 |
| int64/bigint | Int64 |
| int32/int | Int32 |
| int16/smallint | Int16 |
| int8/tinyint | Int8 |
| boolean | Boolean |