PostgreSQL之SQL高级特性

目录


1.with 查询
2.批量插入
3.returning 返回修改数据
4.upsert
5.数据抽样
6.聚合函数
7.窗口函数


1.with 查询


    with是pg支持的高级sql特性,简称为CTE,with查询在复杂查询中定义一个辅助语句(可以理解为定义临时表),常用语复杂查询或者递归查询场景

mytest=> with cte as (
mytest(> select generate_series(1,10)
mytest(> )
mytest-> select * from cte ;
 generate_series 
-----------------
               1
               2
               3
               4
               5
               6
               7
               8
               9
              10
(10 rows)

-- 创建测试表


create table BONUS
(
  ename VARCHAR(10),
  job   VARCHAR(9),
  sal   int4,
  comm  int4
);

create table DEPT
(
  deptno int4 not null,
  dname

你可能感兴趣的:(PostgreSQL,postgresql,sql,数据库)