PostgreSQL 常见操作

1、在命令行登录指定数据库


2、创建表

CREATE TABLE weather (
    city            varchar(80),temp_lo         int,-- low temperature
    temp_hi         int,-- high temperature
    prcp            real,-- precipitation
    date            date
);
Postgresql 的注释是:--

MysqL 的注释是:#
3、表的继承

CREATE TABLE cities (
  name       text,population real,altitude   int     -- (in ft)
);

CREATE TABLE capitals (
  state      char(2)
) INHERITS (cities);
指定“父表”——查询“父表”和“字表”:
SELECT name,altitude
  FROM cities
  WHERE altitude > 500;

   name    | altitude
-----------+----------
 Las Vegas |     2174
 Mariposa  |     1953
 Madison   |      845
(3 rows)
ONLY 加“父表”——只查询父表
SELECT name,altitude
    FROM ONLY cities
    WHERE altitude > 500;

   name    | altitude
-----------+----------
 Las Vegas |     2174
 Mariposa  |     1953
(2 rows)

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...