一、创建表

语法:

create table table_name(

col01_name data_type,

col02_name data_type,

col03_name data_type,
);

1.1 创建表的时候可以指定主键:

postgres=# create table test01(
postgres(# id int primary key,
postgres(# note varchar(20));
CREATE TABLE

  

1.2 如果使用复合主键,则需要使用约束字句的语法:

constraint constrait_name primary key (coll_name, col2_name,...)

postgres=# create table test02(
postgres(# id1 int,
postgres(# id2 int,
postgres(# note varchar(20),
postgres(# constraint pk_test02 primary key (id1,id2));
CREATE TABLE
postgres=# \d test02
Table "public.test02"
Column | Type | Modifiers
--------+-----------------------+-----------
id1 | integer | not null
id2 | integer | not null
note | character varying(20) |
Indexes:
"pk_test02" PRIMARY KEY, btree (id1, id2) postgres=#

  

1.3 创建表指定唯一键,约束主键的一种。constraint constraint_name unique(col1_name,col2_anme,...)

postgres=# create table test03(
postgres(# id1 int
postgres(# ^C
postgres=# create table test03(
postgres(# id1 int,
postgres(# id2 int,
postgres(# id3 int,
postgres(# note varchar(20),
postgres(# constraint pk_test03 primary key(id1,id2),
postgres(# constraint uk_test03 unique(id3));
CREATE TABLE

  

1.4  check 也是一种约束形式,用于定义某些字段的值必须满足某种要求,

constraint constraint_name check(expression)

例如:建立一张child表,要求字段(age)不能大于18岁:

postgres=# create table child(
postgres(# name varchar(20),
postgres(# age int,
postgres(# note text,
postgres(# constraint ck_child_age check(age < 18));
CREATE TABLE

  

1.5  使用其他表作为模板创建新表:

postgres=# create table baby (like child);
CREATE TABLE
postgres=# \d baby
Table "public.baby"
Column | Type | Modifiers
--------+-----------------------+-----------
name | character varying(20) |
age | integer |
note | text | postgres=# \d child
Table "public.child"
Column | Type | Modifiers
--------+-----------------------+-----------
name | character varying(20) |
age | integer |
note | text |
Check constraints:
"ck_child_age" CHECK (age < 18) postgres=#

  

1.5  用模板创建的表没有把源表上的约束复制过来,如果想完全复制多来源表的其它信息,需要‘including’:

including defults

including constraints

including indexes

including storage

including comments

including all

postgres=# create table baby (like child including all);
CREATE TABLE

 

二、临时表

postgresql支持两类临时表,会话结束时,临时表就会消失。

会话临时表:数据可以一直保存在整个会话的生命周期中。

事务临时表:数据只存在于这个失误的生命周期中。

如果在两个不同的session中创建同名的临时表,实际上创建的两个不同的表。

postgres=# create temporary table tmp_t1(
postgres(# id int primary key,
postgres(# note text);
CREATE TABLE
postgres=# \d \\ 可以查到
List of relations
Schema | Name | Type | Owner
-----------+-------------+-------+----------
pg_temp_2 | tmp_t1 | table | postgres

  

当重新打开一个终端session时,用\d是查不到这个临时表的。\d把schema名称加上:

postgres=# \d pg_temp_2.tmp_t1;
Table "pg_temp_2.tmp_t1"
Column | Type | Modifiers
--------+---------+-----------
id | integer | not null
note | text |
Indexes:
"tmp_t1_pkey" PRIMARY KEY, btree (id)

  # 可以查到,但是无法访问数据,也不可以插入修改数据。

创建事物级的临时表,加上  on commit delete rows

postgres=# create temporary table tmp_t2(id int primary key,note text) on commit delete rows;
CREATE TABLE
postgres=# begin;
BEGIN
postgres=# insert into tmp_t2 values(1,'aaa');
INSERT 0 1
postgres=# insert into tmp_t2 values(2,'bbb');
INSERT 0 1
postgres=# select * from tmp_t2;
id | note
----+------
1 | aaa
2 | bbb
(2 rows)
postgres=# end;
COMMIT
postgres=# select * from tmp_t2;
id | note
----+------
(0 rows)

  #  事务结束后,表就消失了。

temporary  可以缩写成  temp

postgresql逻辑结构--表(二)的更多相关文章

  1. postgresql逻辑结构--表空间(四)

    一.创建表空间 1. 语法:create tablespace tablespace_name [owner user_name] location 'directory' postgres=# cr ...

  2. PostgreSQL的存储系统二:REDOLOG文件存储结构二

    REDOLOG文件里的用户数据和数据文件里的用户数据存储结构相同 几个月前同事给台湾一家公司培训<pg9 ad admin>时,有个学员提及WAL里记录的内容为Query时的SQL语句(比 ...

  3. mybatis使用注解往postgresql数据库表insert数据[主键自增]的写法

    建表SQL: DROP TABLE IF EXISTS person; CREATE TABLE person( person_id serial PRIMARY KEY NOT NULL, pers ...

  4. Postgresql两表联结更新

    Postgresql两表联合更新近日使用Postgresql感到有点不好用,一个联合更新非要这样写语法才对:update d_routetripset name=b.name ,    descrip ...

  5. postgresql逻辑结构(一)

    一.数据库逻辑结构介绍 数据库:应用连接到一个数据库时,一般不能访问其它数据库,除非使用dblink等其他手段. 表.索引:postgresql中标的术语为relation,其它数据库中成为table ...

  6. [转]PostgreSQL 逻辑结构 和 权限体系 介绍

    摘要: 本文旨在帮助用户理解PostgreSQL的逻辑结构和权限体系,帮助用户快速的理解和管理数据库的权限. 逻辑结构 最上层是实例,实例中允许创建多个数据库,每个数据库中可以创建多个schema,每 ...

  7. 跟我一起读postgresql源码(二)——Parser(查询分析模块)

    上篇博客简要的介绍了下psql命令行客户端的前台代码.这一次,我们来看看后台的代码吧. 十分不好意思的是,上篇博客我们只说明了前台登陆的代码,没有介绍前台登陆过程中,后台是如何工作的.即:后台接到前台 ...

  8. ORACLE体系结构一 (逻辑结构)-表空间、段、区和数据块

    一.Oracle的逻辑结构 Oracle的逻辑结构是一种层次结构.主要由:表空间.段.区和数据块等概念组成.逻辑结构是面向用户的,用户使用Oracle开发应用程序使用的就是逻辑结构.数据库存储层次结构 ...

  9. ORACLE体系结构逻辑结构-表空间、段、区和数据块

    转自: https://www.cnblogs.com/sunziying/p/8994792.html 一.Oracle的逻辑结构 Oracle的逻辑结构是一种层次结构.主要由:表空间.段.区和数据 ...

随机推荐

  1. Java学习介绍

    Java版本介绍 JavaME:微型版,用于开发小型设备.智能卡.移动终端应用(使用率较低) JavaSE:标准版,用于创建桌面应用(企业用JavaSE创建桌面应用较少) JavaEE:企业版,用于创 ...

  2. 6.关键字static

    在java中并不存在全局变量的概念,但是我们可以通过static关键字来实现一个“为全局”的概念,在java中static表示“全局”和“静态”的意思,他可以用来修饰成员变量和方法,也可以用来修饰代码 ...

  3. 7.Layout布局(tabs、accordion、layout)

    一.tabs选项卡: 二.accordion手风琴: 三.经由div标记创建layout布局: 注意:center不是定位得到的,而是通过其他的几个位置计算得到的,如果不写center整个布局就无法初 ...

  4. Amoeba变形虫

    我们通过路由选择来决定操作时访问那个数据库,而路由的选择方式不外乎以下几种: 1) SpringAOP方式:spring底层配置多个数据源,配置路由(面向切面编程)手工写很多代码(废除) 2) MyS ...

  5. 使用PinYin4j.jar将汉字转换为拼音

    package com.Test.util; import net.sourceforge.pinyin4j.PinyinHelper; import net.sourceforge.pinyin4j ...

  6. Tencent interview

    1.常见的聚类算法 1):划分法:k-means 2):基于密度的方法: 2.EM 算法 EM算法是在概率模型中寻找参数的最大似然估计或者最大后验概率的算法,其中概率模型依赖于无法观测的隐藏变量.EM ...

  7. Delphi 在DLL中使用DevExpress控件时出错解决办法

    测试环境 DevExpress VCL 14.1.3 和XE7 问题:在dll使用cxGrid控件时  如果不添加列标题 则不报错   查询无数据集显示,如果加上标题 就报错了 这段为报错部分 fun ...

  8. java异步线程

    使用一个ExecutorService,增加两个不可取消的子线程任务,并且获取他们的返回值. ​ @org.junit.Test public void testFuture() throws Int ...

  9. java servlet编写验证码

    import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.image.Buffere ...

  10. lua编程之lua与C相互调用

    lua是扩展性非常良好的语言,虽然核心非常精简,但是用户可以依靠lua库来实现大部分工作.除此之外,lua还可以通过与C函数相互调用来扩展程序功能.在C中嵌入lua脚本既可以让用户在不重新编译代码的情 ...