Hi all,
Which is better :
1. loop at itab.
select statement from dbtable
into table itab2
where ...
endloop.
OR
2. select statement
for all entries in itab
into itab2
where ....
Does the performance difference vary depending on the entries in itab??
Advance Thanks