Factors that Influence the Processing of an SQL Statement 
The following factors play a role during the processing of an SQL statement:
ORDER clause,
UPDATE clause,
DISTINCT specification, and specification of FOR REUSE)
UPDATE statement
Search conditions
These factors especially influence the processing of an SQL statement if the SQL statement triggers a search of a large quantity of data. This generally happens with the following SQL statements:
SELECT ...
INSERT ... SELECT ...
UPDATE ... WHERE <search_condition>
DELETE ... WHERE <search_condition>