Linux/Postgres: Difference between revisions
< Linux
(Created page with "== PostgreSQL data types == * boolean * char(n) * varchar(n) * text * smallint (-32768 - 32767) * int * serial (~auto_increment in mysql) * float(n) * real / float8 * numeric(p,s) * date * time * timestamp * timestamptz * interval * json * jsonb * uuid * + special Category:Linux/Services Category:Linux") |
m (Marcluer moved page Postgres to Linux/Postgres) |
(No difference)
|
Revision as of 15:10, 28 September 2024
PostgreSQL data types
- boolean
- char(n)
- varchar(n)
- text
- smallint (-32768 - 32767)
- int
- serial (~auto_increment in mysql)
- float(n)
- real / float8
- numeric(p,s)
- date
- time
- timestamp
- timestamptz
- interval
- json
- jsonb
- uuid
- + special