mongodb与greenplum中字段类型的对应关系
时间: 2023-11-04 07:33:31 浏览: 107
MongoDB与Greenplum中字段类型的对应关系如下:
| MongoDB | Greenplum |
|---------|-----------|
| String | Varchar |
| Integer | Integer |
| Long | Bigint |
| Double | Double Precision |
| Decimal | Decimal |
| Boolean | Boolean |
| Date | Timestamp |
| Object | JSON |
| Array | Array |
需要注意的是,MongoDB中的Object和Array类型需要转换为JSON和Array类型存储在Greenplum中。此外,Greenplum还支持其他类型,如Time, Interval等,需要根据具体情况进行转换。
阅读全文