‎2006 Oct 11 11:25 AM
Hi All,
Can any one please let me know whether SELECT ENDSELECT
is the worst in all the cases?
If it is worst in all the cases then when to use this?
Regards
Rakesh
‎2006 Oct 11 11:28 AM
we generally use select ........ endselect in the following case
exemple:
select field1 field2 from dbtab into itab.
itab-field3 = <some value not from dbtab>.
append itab.
endselect.
we use slect into table in the follwoing case:
select fiel1 field2 field3 from dbtab into table itab.