经常在SQL中会遇到比较复杂的SQL,很多老手也不知道怎么入手。在Postgres数据库中有一种强大的with用法,可以分拆复杂的SQL并重新组装,也可以当做临时表来使用,之前也曾用with语法来实现SQL层面的递归。以下介绍开发中遇到的另一个例子。
环境: Postgres 9.1.2
评论表T1(user_id reference T2(user_id))
用户表T2(user_id)
**场景:**
需要对T1表中数据按评论数分组排序,选择前5条记录与表T2进行关联,返回满足条件的T2用户数据,但要根据T1的排序结果来展示,也就是要显示评论最多的5个用户的详细信息,并按评论数把用户从高到低排列。
开发的SQL:
1.查看表T1,并排序
~~~
select user_id,count(1) from t1 group by user_id order by count(1) desc limit 5;
~~~
[![](http://static.oschina.net/uploads/space/2013/0120/154516_bhDU_267373.jpg)](http://static.oschina.net/uploads/space/2013/0120/154516_bhDU_267373.jpg)
2.与表T2关联
~~~
select * from t2 where user_id in(
select user_id from t1 group by user_id order by count(1) desc limit 5);
~~~
但是展示的T2结果虽然取出来了,但并没有排序,没有达到效果
[![](http://static.oschina.net/uploads/space/2013/0120/154627_SSOx_267373.jpg)](http://static.oschina.net/uploads/space/2013/0120/154627_SSOx_267373.jpg)
**解决办法:**
1.使用两个表的join来实现
~~~
select t2.user_id,t2.user_name,count(1) as num from t1,t2
where t1.user_id = t2.user_id
group by t2.user_id,t2.user_name
order by num desc limit 5;
~~~
2.用with来构造:
~~~
with tmp as(
select user_id,count(1) as num from t1 group by user_id order by num desc limit 5
)
select t2.*,tmp.num from t2 inner join tmp
on t2.user_id = tmp.user_id order by tmp.num desc
~~~
**分析:**
第一种办法需要两张表关联再分组取前5条,执行计划如下:
[![](http://static.oschina.net/uploads/space/2013/0120/162327_C84g_267373.jpg)](http://static.oschina.net/uploads/space/2013/0120/162327_C84g_267373.jpg)
如果数据量比较大,尤其是T2表很大的时候,会消耗比较多的资源,另外如果想取用户表里有其他的字段,也需要进行分组
第二种办法是采用with来构造临时表,然后再去与T2表关联取数,执行计划如下:
[![](http://static.oschina.net/uploads/space/2013/0120/162339_fVTc_267373.jpg)](http://static.oschina.net/uploads/space/2013/0120/162339_fVTc_267373.jpg)
可以看到消耗的资源相对少一点,测试中发现T2、T1表很大的时候,这种差距尤其明显。
- 数据表
- 模式Schema
- 表的继承和分区
- 常用数据类型
- 函数和操作符-一
- 函数和操作符-二
- 函数和操作符-三
- 索引
- 事物隔离
- 性能提升技巧
- 服务器配置
- 角色和权限
- 数据库管理
- 数据库维护
- 系统表
- 系统视图
- SQL语言函数
- PL-pgSQL过程语言
- PostgreSQL 序列(SEQUENCE)
- PostgreSQL的时间-日期函数使用
- PostgreSQL 查看数据库,索引,表,表空间大小
- 用以查询某表的详细 包含表字段的注释信息
- PostgreSQL 系统表查看系统信息
- postgre存储过程简单实用方法
- PostgreSQL实用日常维护SQL
- PostgreSQL的时间函数使用整理
- 命令
- pg_ctl控制服务器
- initdb 初始化数据库簇
- createdb创建数据库
- dropdb 删除数据库
- createuser创建用户
- dropuser 删除用户
- psql交互式工具
- psql命令手册
- pg_dump 数据库转储
- pg_restore恢复数据库
- vacuumdb 清理优化数据库
- reindexdb 数据库重创索引
- createlang 安装过程语言
- droplang 删除过程语言
- pg_upgrade 升级数据库簇
- 调试存储过程
- 客户端命令-一
- 客户端命令-二
- 使用技巧
- PostgreSQL删除重复数据
- postgresql 小技巧
- PostgreSQL的10进制与16进制互转
- PostgreSQL的汉字转拼音
- Postgres重复数据的更新一例
- PostgreSQL使用with一例
- PostgreSQL在函数内返回returning
- PostgreSQL中的group_concat使用
- PostgreSQL数据库切割和组合字段函数
- postgresql重复数据的删除
- PostgreSQL的递归查询(with recursive)
- PostgreSQL函数如何返回数据集
- PostgreSQL分区表(Table Partitioning)应用 - David_Tang - 博客园
- PostgreSQL: function 返回结果集多列和单列的例子
- 利用pgAgent创建定时任务
- 浅谈 PostgreSQL 类型转换类似Oracle
- postgresql在windows(包括win7)下的安装配置
- PostgreSQL简介、安装、用户管理、启动关闭、创建删除数据库 (2010-11-08 12-52-51)转载▼标签: 杂谈分类: PostgreSQL
- PostgreSQL的generate_series函数应用
- PostgreSQL 8.3.1 全文检索(Full Text Search)
- postgresql record 使用
- 备份恢复
- PostgreSQL基于时间点恢复(PITR)
- Postgresql基于时间点恢复PITR案例(二)
- Postgres逻辑备份脚本
- Postgres invalid command \N数据恢复处理