The question uses some ambiguous terminology that makes it unclear what needs to be accomplished. Fortunately, DB2 offers robust support for a variety of SQL patterns.
To limit the number of rows that are modified by an update:
UPDATE
( SELECT t.column1 FROM someschema.sometable t WHERE ... FETCH FIRST ROW ONLY
)
SET t.column1 = 'newvalue';
The update statement never sees the base table, just the expression that filters it, so you can control which rows are updated.
To insert a limited number of new rows:
INSERT INTO mktg.offeredcoupons( cust_id, coupon_id, offered_on, expires_on )
SELECT c.cust_id, 1234, CURRENT TIMESTAMP, CURRENT TIMESTAMP + 30 DAYS
FROM mktg.customers c
LEFT OUTER JOIN mktg.offered_coupons o
ON o.cust_id = c.cust_id
WHERE ....
AND o.cust_id IS NULL
FETCH FIRST 1000 ROWS ONLY;
This is how DB2 supports SELECT from an update, insert, or delete statement:
SELECT column1 FROM NEW TABLE (
UPDATE ( SELECT column1 FROM someschema.sometable
WHERE ... FETCH FIRST ROW ONLY
)
SET t.column1 = 'newvalue'
) AS x;
The SELECT returns data from only the modified rows.
WHEREcondition containing the primary key of the row to be updated? – a_horse_with_no_name Jan 4 '12 at 23:11UPDATEstatements for data-change references (onlyINSERT), which could be easily geared to only getting one row... Or, what about having the update select theMAX()orMIN()unclaimed coupon (potential concurrency issues, there)? – Clockwork-Muse Jan 5 '12 at 21:04