ClickHouse typePython type
| UInt8 | int |
| UInt16 | int |
| UInt32 | int |
| UInt64 | int |
| Int8 | int |
| Int16 | int |
| Int32 | int |
| Int64 | int |
| Float32 | float |
| Float64 | float |
| String | str |
| FixedString | str |
| Enum8 | str |
| Enum16 | str |
| Date | datetime.date |
| DateTime | datetime.datetime |
| Decimal | decimal.Decimal |
| Decimal32 | decimal.Decimal |
| Decimal64 | decimal.Decimal |
| Decimal128 | decimal.Decimal |
| Tuple(T1, T2, ...) | Tuple[T1, T2, ...] |
| Array(T) | List[T] |
| UUID | uuid.UUID |
| Nullable(T) | None or T |
| Nothing | None |
| LowCardinality(T) | T |
'Programming > Python' 카테고리의 다른 글
| python 이 이게되네. (0) | 2019.10.01 |
|---|