From cd5d464e9f8bf9d1a19ae628c5c64374ffb931f6 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 19 Jan 2006 23:09:42 +0000 Subject: [PATCH] Doc patch that adds an example of a correllated UPDATE. David Fetter --- doc/src/sgml/ref/update.sgml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/update.sgml b/doc/src/sgml/ref/update.sgml index 0e354af969..503f41de12 100644 --- a/doc/src/sgml/ref/update.sgml +++ b/doc/src/sgml/ref/update.sgml @@ -1,5 +1,5 @@ @@ -205,14 +205,32 @@ UPDATE employees SET sales_count = sales_count + 1 FROM accounts WHERE accounts.name = 'Acme Corporation' AND employees.id = accounts.sales_person; + + Perform the same operation, using a sub-select in the WHERE clause: UPDATE employees SET sales_count = sales_count + 1 WHERE id = (SELECT sales_person FROM accounts WHERE name = 'Acme Corporation'); + + + Now that all the papers are signed, update the most recently closed + deal of the travelling salesperson who closed the Rocket Powered + Skates deal with the Acme Corporation. + +UPDATE employees SET last_closed_deal = deal.id + FROM accounts JOIN deals ON (account.id = deal.account_id) + WHERE deal.employee_id = employees.id + AND deal.name = 'Rocket Powered Skates' + AND accounts.name = 'Acme Corporation' + ORDER BY deal.signed_date DESC LIMIT 1; + + + + Attempt to insert a new stock item along with the quantity of stock. If the item already exists, instead update the stock count of the existing item. To do this without failing the entire transaction, use savepoints.