SAP ABAP 性能优化技巧 –- “into table” 语句
使用select 命令的 into table语句
与其一行一行的读取数据添加入内表,不如一次性取出所有数据行。
不建议使用:
Refresh: int_fligh.
Select * from zflight into int_fligh.
Append int_fligh.
Clear int_fligh.
Endselect.
建议使用:
Refresh: int_fligh.
Select * from zflight into table int_fligh.
程序员实验室 » Blog Archive » SAP ABAP 性能优化技巧:
[…] “into table” 语句 (The “into table” clause) […]
14 March 2008, 10:28 pm