0 votes
in DB2 by
Why SELECT is not preferred in Embedded SQL programs?

1 Answer

0 votes
by
SELECT is not preferred in embedded SQL programs for three reasons. First, if the table structure is changed by the addition or deletion of a field and the program is modified, then using SELECT might retrieve the columns that the user may not use. This would lead to Input-Output overhead and the chances of index-only scan are also eliminated.
...