Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding performance tuning

Former Member
0 Likes
242

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

1 REPLY 1
Read only

hymavathi_oruganti
Active Contributor
0 Likes
217

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.