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.

原文地址:https://www.cnblogs.com/levin/p/1537853.html