-
Notifications
You must be signed in to change notification settings - Fork 75
Closed
Labels
new checkNew checkNew check
Description
Prefer INSERT INTO TABLE to APPEND TO
INSERT VALUE #( ... ) INTO TABLE itab.
INSERT INTO TABLEworks with all table and key types, thus making it easier for you to refactor the table's type and key definitions if your performance requirements change.Use
APPEND TOonly if you use aSTANDARDtable in an array-like fashion, if you want to stress that the added entry shall be the last row.
Metadata
Metadata
Assignees
Labels
new checkNew checkNew check