免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4989 | 回复: 2
打印 上一主题 下一主题

Postgres SQL查询求助 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-04-07 22:53 |只看该作者 |倒序浏览
本帖最后由 zhuyongxin 于 2010-04-07 22:59 编辑

有一表结构如下:
day                equipment     output
2010/4/1        DAT501           100
2010/4/1        DAT502           120
2010/4/2        DAT501           110
2010/4/2        DAT502           105

查询结果:
day                 DAT501     DAT502
2010/4/1        100           120
2010/4/2        110           105

这个查询怎么实现?

论坛徽章:
3
数据库技术版块每日发帖之星
日期:2015-06-18 22:20:00数据库技术版块每日发帖之星
日期:2015-06-21 22:20:00数据库技术版块每日发帖之星
日期:2015-08-27 06:20:00
2 [报告]
发表于 2010-04-08 00:05 |只看该作者

使用交叉表函数解决

本帖最后由 osdba 于 2010-04-08 00:17 编辑

SELECT *
FROM crosstab(
  'select day, equipment, output
   from t
   where equipment = ''DAT501'' or equipment = ''DAT502''
   order by 1,2')
  AS t(day date, DAT501 integer, DAT502 integer);

注意需要安装contrib下的tablefunc模块后才会有crosstab函数。

见我的演示:
root@postgres1 /usr/src/postgresql-8.4.3/contrib/tablefunc]#su - postgres
[postgres@postgres1 ~]$ cd /usr/src/postgresql-8.4.3/contrib/tablefunc
[postgres@postgres1 tablefunc]$ ls
Makefile  data  expected  sql  tablefunc.c  tablefunc.h  tablefunc.so  tablefunc.sql  tablefunc.sql.in  uninstall_tablefunc.sql
[postgres@postgres1 tablefunc]$ psql -f tablefunc.sql
SET
CREATE FUNCTION
CREATE FUNCTION
CREATE TYPE
CREATE TYPE
CREATE TYPE
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
[postgres@postgres1 tablefunc]$ psql
psql (8.4.3)
Type "help" for help.

create table t(day date,equipment varchar(20),output integer);
insert into t values('2010-04-01','DAT501',100);
insert into t values('2010-04-01','DAT502',120);
insert into t values('2010-04-02','DAT501',110);
insert into t values('2010-04-02','DAT502',105);


postgres=# SELECT *
postgres-# FROM crosstab(
postgres(#   'select day, equipment, output
postgres'#    from t
postgres'#    where equipment = ''DAT501'' or equipment = ''DAT502''
postgres'#    order by 1,2')
postgres-#   AS t(day date, DAT501 integer, DAT502 integer);
    day     | dat501 | dat502
------------+--------+--------
2010-04-01 |    100 |    120
2010-04-02 |    110 |    105
(2 rows)

论坛徽章:
0
3 [报告]
发表于 2010-04-11 20:58 |只看该作者
谢谢了,你太热心了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP