发布网友 发布时间:2024-12-13 00:11
共6个回答
热心网友 时间:2024-12-14 01:59
select (select max(D) from tab_name) max_D,sum(B),A from tab_name group by A;
热心网友 时间:2024-12-14 01:58
select a,sum(b),sum(c),max(d) from tablename group by a
热心网友 时间:2024-12-14 01:57
一句话是写不出来的
热心网友 时间:2024-12-14 01:58
select a,b,c,d
from (select a,sum(b) b ,sum(c) c,'1' as ab from 表 group by a ) t
join (select '1' as ab , max(d) d from 表 ) t1 on t.ab= t1.ab
热心网友 时间:2024-12-14 01:58
好像只能写两句,因为分组函数的条件是按列的,不同的列无法进行定向编译。
热心网友 时间:2024-12-14 01:58
select
sum(B),sumsum(C) ,max(D)
from table_name
group by A;