SAP ABAP GROUP BY语法问题.

问题描述:

SAP ABAP GROUP BY语法问题.
人员编码 课程 月份
0001 10
0002 数据 09
0003 01
0004 12
×---------------------------------------------------------------------×
这样的一组数据.如果用group by这个语法我该如何去相同课程的最大和最小月份呢?
麻烦写过例子出来..

REPORTZTEST.DATA:l_course type c length 10,l_maxmonth type n length 2,l_minmonth type n length 2.SELECT course max( month ) min( month ) into (l_course, l_maxmonth, l_minmonth) FRO...course max(month) min(month)是什么意思? 是透明表的数据字段吗?如果是的话括号里面又是什么呢?course month 是透明表字段名,对应着你的表字段 “课程”“月份”max min 是聚集函数,用来在使用 GROUP BY 所取到的记录中取最大值和最小值