- 第 1 章 PostgreSQL 安装
- 第 2 章 Administration
- 第 3 章 PostgreSQL 系统表
- 第 4 章 PostgreSQL 命令
- 第 5 章 数据定义(DDL)
- 第 6 章 DML
- 第 7 章 SQL
- 第 8 章 事务处理与锁
- 第 9 章 PostgreSQL GUI
- 第 13 章 Barman for PostgreSQL
- 第 11 章 pgbouncer - lightweight connection pooler for PostgreSQL
- 第 12 章 Foreign data wrappers
- 第 14 章 Connector
- 第 15 章 Replication
- 第 16 章 FAQ
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
5.2. Types
5.2. Types
5.2.1. Enumerated Types
CREATE TYPE gender AS ENUM ('Male', 'Female');
CREATE TABLE person ( name character varying, gender gender );
5.2.2. uuid
create extension "uuid-ossp"; create table products ( product_id uuid primary key default uuid_generate_v4() );
-bash-4.1$ psql test psql (9.2.4) Type "help" for help. test=# create extension "uuid-ossp"; CREATE EXTENSION test=# select uuid_generate_v4(); uuid_generate_v4 -------------------------------------- fed01361-b3bd-4844-8a99-34b0d7eab78d (1 row) test=# create table products (product_id uuid primary key default uuid_generate_v4()); NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "products_pkey" for table "products" CREATE TABLE test=# test=# insert into products values (default), (default); INSERT 0 2 test=# select * from products; product_id -------------------------------------- 25bef8e4-35a2-439c-83ed-dd40a61aef92 ea02a9a3-114d-417f-9a65-7292715538da (2 rows) test=#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论