使用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.

posted on 2009-08-03 19:27  levin  阅读(689)  评论(0编辑  收藏  举报