Relational , Document-based and Graph-based databases
| Type Name | Description |
|---|---|
| CHAR(n) | Fixed length characters string |
| VARCHAR(n) | Variable length characters string |
| TEXT | Infinite length characters string |
| INT | Integer numeric value |
| FLOAT(n) | Floating point numeric value |
| DATE | Stores the date only |
| TIME | Stores the time only |
| Type Name | Description |
|---|---|
| TIMESTAMPTZ | Stores the time stamp (date and time) with time zone |
| ARRAY[n] | Stores an array of dimension n, the array can store any type |
| JSON | Stores a JSON document with ability to query |