日期:2014-05-16 浏览次数:20453 次
create table test (数量 int, 时间 datetime,内码1 int ,内码2 int)
insert test
select 30,'2011-3-3',1992,1 union all
select 20,'2011-6-5',1992,1 union all
select 22,'2012-5-1',1993,2 union all
select 11,'2013-5-6',1991,1
select SUM(数量),
MAX(时间),
内码1,
内码2
from test
group by 内码1,
内码2