SQL tutorial | Interview questions | Oracle
Would you like to react to this message? Create an account in a few clicks or log in to continue.

How To Use Existing Values in UPDATE Statements?

Go down

How To Use Existing Values in UPDATE Statements? Empty How To Use Existing Values in UPDATE Statements?

Post by Micheal Sat Jan 16, 2010 9:35 pm

If a row matches the WHERE clause in a UPDATE statement, existing values in this row can be
used in expressions to provide new values in the SET clause. Existing values are represented by
columns in the expressions. The tutorial exercise below shows a good example:
UPDATE fyi_links SET id = 1000 + id, counts = id*2
WHERE id >= 250;
3 rows updated.
SELECT * FROM fyi_links WHERE id >= 250;
ID URL NOTES COUNTS CREATED
----- ------------------------ ------------ ------- ---------
1250 Retail Sales.com Wrong URL 500 07-MAY-06
1260 Recruiting.com Wrong URL 520 07-MAY-06
1270 Payroll.com Wrong URL 540 07-MAY-06

Micheal
Admin

Posts : 243
Join date : 2010-01-10

http://sql-tutorial.co.cc

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum