我如果想查询本月的所有支出,在SQL server中用
select SUM(price) as sumpayM from pay where DATEPART(MM,time)
=DATEPART(MM,GETDATE()) and DATEPART(YY,time)
=DATEPART(YY,GETDATE()) and userid=1;就可了。如果我想查询本月每天的所有支出,好像用:
select convert(varchar(10),time,120) D,SUM(price) as sumpayD from pay where DATEPART(MM,time)
=DATEPART(MM,GETDATE()) and DATEPART(YY,time)
=DATEPART(YY,GETDATE()) and userid=1
group by convert(varchar(10),time,120);也可以,
但我希望查询出来的每一列都代表一天的总支出,就好像今天是2011年12月21日,那么就应该显示21列,第一列是2011年12月1号那天的所有支出,第二列就是2号的所有支出,最后一列是21号的!不知道我的要求你懂不?
你看下这段代码对你有没有帮助:
//查询本月支出情况
public List getPayByM(Connection con,Long userId)throws SQLException{
Statement st = con.createStatement();
int s = this.GetDay(con);
List list = new ArrayList();
  String a ="";   
  for(int i=0;i<s;i++){
  int z = i+1;
  if(i==(s-1)){
  a+="sum(decode(extract(day from b.times),"+(i+1)+",b.price,0)) as a"+(i+1);
  }else{
  a+="sum(decode(extract(day from b.times),"+(i+1)+",b.price,0)) as a"+(i+1)+" , ";
  }
  }
  String sql ="SELECT "+a+" FROM pay b where b.userid="+userId+" and extract(month from b.times)=07";
  ResultSet rs1 = st.executeQuery(sql);
  if(rs1.next()){
  for(int i=0;i<s;i++){
  list.add(rs1.getInt("a"+(i+1)));
  } 
}
return list;}
我用的是SQL server数据库,上面的SQL语句是oracle的.

解决方案 »

  1.   


    建议你提供详细的资料:
    例如表的结构,表之间的关系,测试数据,相关算法及需要的结果。
    这样有助于我们理解你的意思,更主要的是能尽快让你获得答案或解决问题的方法。
    貌似你这个需要使用到行列转换,其相关内容见下:/*
    标题:普通行列转换(version 2.0)
    作者:爱新觉罗.毓华(十八年风雨,守得冰山雪莲花开)
    时间:2008-03-09
    地点:广东深圳
    说明:普通行列转换(version 1.0)仅针对sql server 2000提供静态和动态写法,version 2.0增加sql server 2005的有关写法。问题:假设有张学生成绩表(tb)如下:
    姓名 课程 分数
    张三 语文 74
    张三 数学 83
    张三 物理 93
    李四 语文 74
    李四 数学 84
    李四 物理 94
    想变成(得到如下结果): 
    姓名 语文 数学 物理 
    ---- ---- ---- ----
    李四 74   84   94
    张三 74   83   93
    -------------------
    */create table tb(姓名 varchar(10) , 课程 varchar(10) , 分数 int)
    insert into tb values('张三' , '语文' , 74)
    insert into tb values('张三' , '数学' , 83)
    insert into tb values('张三' , '物理' , 93)
    insert into tb values('李四' , '语文' , 74)
    insert into tb values('李四' , '数学' , 84)
    insert into tb values('李四' , '物理' , 94)
    go--SQL SERVER 2000 静态SQL,指课程只有语文、数学、物理这三门课程。(以下同)
    select 姓名 as 姓名 ,
      max(case 课程 when '语文' then 分数 else 0 end) 语文,
      max(case 课程 when '数学' then 分数 else 0 end) 数学,
      max(case 课程 when '物理' then 分数 else 0 end) 物理
    from tb
    group by 姓名--SQL SERVER 2000 动态SQL,指课程不止语文、数学、物理这三门课程。(以下同)
    declare @sql varchar(8000)
    set @sql = 'select 姓名 '
    select @sql = @sql + ' , max(case 课程 when ''' + 课程 + ''' then 分数 else 0 end) [' + 课程 + ']'
    from (select distinct 课程 from tb) as a
    set @sql = @sql + ' from tb group by 姓名'
    exec(@sql) --SQL SERVER 2005 静态SQL。
    select * from tb a pivot (max(分数) for 课程 in (语文,数学,物理)) b--SQL SERVER 2005 动态SQL。
    declare @sql varchar(8000)
    select @sql = isnull(@sql + '],[' , '') + 课程 from tb group by 课程
    set @sql = '[' + @sql + ']'
    exec ('select * from (select * from tb) a pivot (max(分数) for 课程 in (' + @sql + ')) b')---------------------------------/*
    问题:在上述结果的基础上加平均分,总分,得到如下结果:
    姓名 语文 数学 物理 平均分 总分 
    ---- ---- ---- ---- ------ ----
    李四 74   84   94   84.00  252
    张三 74   83   93   83.33  250
    */--SQL SERVER 2000 静态SQL。
    select 姓名 姓名,
      max(case 课程 when '语文' then 分数 else 0 end) 语文,
      max(case 课程 when '数学' then 分数 else 0 end) 数学,
      max(case 课程 when '物理' then 分数 else 0 end) 物理,
      cast(avg(分数*1.0) as decimal(18,2)) 平均分,
      sum(分数) 总分
    from tb
    group by 姓名--SQL SERVER 2000 动态SQL。
    declare @sql varchar(8000)
    set @sql = 'select 姓名 '
    select @sql = @sql + ' , max(case 课程 when ''' + 课程 + ''' then 分数 else 0 end) [' + 课程 + ']'
    from (select distinct 课程 from tb) as a
    set @sql = @sql + ' , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名'
    exec(@sql) --SQL SERVER 2005 静态SQL。
    select m.* , n.平均分 , n.总分 from
    (select * from (select * from tb) a pivot (max(分数) for 课程 in (语文,数学,物理)) b) m,
    (select 姓名 , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名) n
    where m.姓名 = n.姓名--SQL SERVER 2005 动态SQL。
    declare @sql varchar(8000)
    select @sql = isnull(@sql + ',' , '') + 课程 from tb group by 课程
    exec ('select m.* , n.平均分 , n.总分 from
    (select * from (select * from tb) a pivot (max(分数) for 课程 in (' + @sql + ')) b) m , 
    (select 姓名 , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名) n
    where m.姓名 = n.姓名')drop table tb    ------------------
    ------------------/*
    问题:如果上述两表互相换一下:即表结构和数据为:
    姓名 语文 数学 物理
    张三 74  83  93
    李四 74  84  94
    想变成(得到如下结果): 
    姓名 课程 分数 
    ---- ---- ----
    李四 语文 74
    李四 数学 84
    李四 物理 94
    张三 语文 74
    张三 数学 83
    张三 物理 93
    --------------
    */create table tb(姓名 varchar(10) , 语文 int , 数学 int , 物理 int)
    insert into tb values('张三',74,83,93)
    insert into tb values('李四',74,84,94)
    go--SQL SERVER 2000 静态SQL。
    select * from
    (
     select 姓名 , 课程 = '语文' , 分数 = 语文 from tb 
     union all
     select 姓名 , 课程 = '数学' , 分数 = 数学 from tb
     union all
     select 姓名 , 课程 = '物理' , 分数 = 物理 from tb
    ) t
    order by 姓名 , case 课程 when '语文' then 1 when '数学' then 2 when '物理' then 3 end--SQL SERVER 2000 动态SQL。
    --调用系统表动态生态。
    declare @sql varchar(8000)
    select @sql = isnull(@sql + ' union all ' , '' ) + ' select 姓名 , [课程] = ' + quotename(Name , '''') + ' , [分数] = ' + quotename(Name) + ' from tb'
    from syscolumns 
    where name! = N'姓名' and ID = object_id('tb') --表名tb,不包含列名为姓名的其它列
    order by colid asc
    exec(@sql + ' order by 姓名 ')--SQL SERVER 2005 静态SQL。
    select 姓名 , 课程 , 分数 from tb unpivot (分数 for 课程 in([语文] , [数学] , [物理])) t--SQL SERVER 2005 动态SQL,同SQL SERVER 2000 动态SQL。--------------------
    /*
    问题:在上述的结果上加个平均分,总分,得到如下结果:
    姓名 课程   分数
    ---- ------ ------
    李四 语文   74.00
    李四 数学   84.00
    李四 物理   94.00
    李四 平均分 84.00
    李四 总分   252.00
    张三 语文   74.00
    张三 数学   83.00
    张三 物理   93.00
    张三 平均分 83.33
    张三 总分   250.00
    ------------------
    */select * from
    (
     select 姓名 as 姓名 , 课程 = '语文' , 分数 = 语文 from tb 
     union all
     select 姓名 as 姓名 , 课程 = '数学' , 分数 = 数学 from tb
     union all
     select 姓名 as 姓名 , 课程 = '物理' , 分数 = 物理 from tb
     union all
     select 姓名 as 姓名 , 课程 = '平均分' , 分数 = cast((语文 + 数学 + 物理)*1.0/3 as decimal(18,2)) from tb
     union all
     select 姓名 as 姓名 , 课程 = '总分' , 分数 = 语文 + 数学 + 物理 from tb
    ) t
    order by 姓名 , case 课程 when '语文' then 1 when '数学' then 2 when '物理' then 3 when '平均分' then 4 when '总分' then 5 enddrop table tb
      

  2.   

    行列转换+GROUP BY WITH ROLLUP等小小来解决。
      

  3.   

    declare @sql varchar(8000)
    set @sql = 'select isnull(userid,''合计'') as 合计'
    select @sql = @sql + ' , sum(case convert(varchar(10),time,120) when ''' + convert(varchar(10),time,120) + ''' then price else 0 end) [' + convert(varchar(10),time,120) + ']'
    from (select distinct convert(varchar(10),time,120) from tb) as a
    set @sql = @sql + ' from tb group by userid with rollup'
    exec(@sql) 
      

  4.   

    datediff(month,[date],getdate())=0筛选本月,做行转列。
      

  5.   

    我的表是这样的:
    create table pay(--支出
    id int identity(1,1) primary key,--主键
    pay_title varchar(100),--支出名称
    pay_name varchar(100),--支出人姓名
    type_id int foreign key references paytype(id),--支出类型(外键)
    price float,--支出金额
    time date,--支出时间
    brief varchar(1000),--支出简介
    userid int foreign key references users(id)--支出人Id
    ); 如果这个月有7天,那么我想得到的数据就是这样的:
    1号 2号 3号 4号 5号 6号 7号
    1 234 345 123 4645 657 234 5435
      

  6.   

    create table pay(--支出
    id int identity(1,1) primary key,--主键
    pay_title varchar(100),--支出名称
    pay_name varchar(100),--支出人姓名
    type_id int ,--foreign key references paytype(id),--支出类型(外键)
    price float,--支出金额
    time date,--支出时间
    brief varchar(1000),--支出简介
    userid int --foreign key references users(id)--支出人Id
    )
    insert into pay(pay_title,[time],price) select 'a','2011-07-01',542.21
    insert into pay(pay_title,[time],price) select 'a','2011-07-01',985.25
    insert into pay(pay_title,[time],price) select 'a','2011-07-02',246.55
    insert into pay(pay_title,[time],price) select 'a','2011-07-03',81849.55
    insert into pay(pay_title,[time],price) select 'a','2011-07-04',57154.21
    insert into pay(pay_title,[time],price) select 'a','2011-08-04',74.21
    go
    select time,price into # from pay where CONVERT(varchar(7),[time],120)='2011-07'
    declare @s nvarchar(4000)
    select @s=isnull(@s+',','')+'['+ convert(varchar(10),time,120) +']' from 
    (select distinct time from #)t
    exec('select '+@s+'from # pivot (sum([price]) for [time] in('+@s+'))b')
    /*
    2011-07-01             2011-07-02             2011-07-03             2011-07-04
    ---------------------- ---------------------- ---------------------- ----------------------
    1527.46                246.55                 81849.55               57154.21(1 行受影响)*/
    go
    drop table pay,#
    go
      

  7.   


    create table pay(--支出
    id int identity(1,1) primary key,--主键
    pay_title varchar(100),--支出名称
    pay_name varchar(100),--支出人姓名
    type_id int ,--foreign key references paytype(id),--支出类型(外键)
    price float,--支出金额
    time datetime,--支出时间
    brief varchar(1000),--支出简介
    userid int --foreign key references users(id)--支出人Id
    )
    insert into pay(pay_title,[time],price) select 'a','2011-07-01',542.21
    insert into pay(pay_title,[time],price) select 'a','2011-07-01',985.25
    insert into pay(pay_title,[time],price) select 'a','2011-07-05',246.55
    insert into pay(pay_title,[time],price) select 'a','2011-07-03',81849.55
    insert into pay(pay_title,[time],price) select 'a','2011-07-04',57154.21
    insert into pay(pay_title,[time],price) select 'a','2011-08-04',74.21
    go
    declare @a varchar(10)
    declare @b varchar(10)
    set @a='2011-07'
    set @b=convert(varchar(10),dateadd(d,-1,dateadd(m,1,@a+'-01')),120)
    declare @s varchar(8000)
    select @s=isnull(@s+',','')+'['+ convert(varchar(10),ntime,120) +']' from 
    (select @a+'-'+right('0'+cast(number as varchar(2)),2) as ntime 
    from master..spt_values 
    where type='p' and number>=1 and number<=31 and @a+'-'+right('0'+cast(number as varchar(2)),2) <=@b
     )t
    exec('select '+@s+'from 
    (select time,price  from pay where CONVERT(varchar(7),[time],120)='''+@a+''') as aa  
    pivot (sum([price]) for [time] in('+@s+'))b ' ) 
    --结果显示的是1号~31号的值
    /*
    1527.46 NULL 81849.55 57154.21 246.55 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
    */
      

  8.   

    create table pay(--支出
    id int identity(1,1) primary key,--主键
    pay_title varchar(100),--支出名称
    pay_name varchar(100),--支出人姓名
    type_id int ,--foreign key references paytype(id),--支出类型(外键)
    price float,--支出金额
    time date,--支出时间
    brief varchar(1000),--支出简介
    userid int --foreign key references users(id)--支出人Id
    )
    insert into pay(pay_title,[time],price) select 'a','2011-07-01',542.21
    insert into pay(pay_title,[time],price) select 'a','2011-07-01',985.25
    insert into pay(pay_title,[time],price) select 'a','2011-07-02',246.55
    insert into pay(pay_title,[time],price) select 'a','2011-07-03',81849.55
    insert into pay(pay_title,[time],price) select 'a','2011-07-04',57154.21
    insert into pay(pay_title,[time],price) select 'a','2011-08-04',74.21
    go
    select DATEADD(d,a.number,'2011-07-01')dt,sum(isnull(b.price,0))price into #
    from master..spt_values a left join pay b on DATEADD(d,a.number,'2011-07-01')=b.[time]
    where a.type='p' and CONVERT(varchar(7),DATEADD(d,a.number,'2011-07-01'),120)='2011-07'
    group by DATEADD(d,a.number,'2011-07-01')
    declare @s nvarchar(4000)
    select @s=isnull(@s+',','')+'['+ convert(varchar(10),dt,120) +']' from 
    (select distinct dt from #)t
    exec('select '+@s+'from # pivot (sum([price]) for [dt] in('+@s+'))b')
    /*
    2011-07-01             2011-07-02             2011-07-03             2011-07-04             2011-07-05             2011-07-06             2011-07-07             2011-07-08             2011-07-09             2011-07-10             2011-07-11             2011-07-12             2011-07-13             2011-07-14             2011-07-15             2011-07-16             2011-07-17             2011-07-18             2011-07-19             2011-07-20             2011-07-21             2011-07-22             2011-07-23             2011-07-24             2011-07-25             2011-07-26             2011-07-27             2011-07-28             2011-07-29             2011-07-30             2011-07-31
    ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ----------------------
    1527.46                246.55                 81849.55               57154.21               0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0                      0(1 行受影响)
    */
    go
    drop table pay,#
    go
      

  9.   

    谢谢大家的帮助,我的问题解决了,是我把问题想复杂了,我是这样解决的:
    /*
       * 查询本月支出情况
       */
      public List getPayByM(int id){
      java.util.Date date =  new java.util.Date();
      int year = 1900+date.getYear();
      int month = date.getMonth()+1;
      int day = date.getDate();
      List list = new ArrayList();
      String times;
      try {
      for(int i=1;i<=day;i++){
      times = year+"-"+month+"-"+i;
      String sql = "select SUM(price) as sumD"+i+" from pay where time='"+times+"' and userid = ?";
      conn = DBManager.getConnection();
      ps = conn.prepareStatement(sql);
      ps.setInt(1,id);
      rs = ps.executeQuery();
      if (rs.next()) {
      list.add(rs.getInt("sumD"+i));
      }
      } 
      }catch (SQLException e) {
    e.printStackTrace();
    }finally{
    DBManager.closeConnection(conn, ps, rs);
    }
      return list;
      }