Collections:
Use Existing Column Values in SET Clause in Oracle
How To Use Existing Values in UPDATE Statements in Oracle?
✍: FYIcenter.com
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
This statement increased values in the id column by 1000.
⇒ Use Values from Other Tables in UPDATE in Oracle
⇐ Update Values on Multiple Rows in Oracle
2020-01-21, 2664🔥, 0💬
Popular Posts:
How To Revise and Re-Run the Last SQL Command in Oracle? If executed a long SQL statement, found a m...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...
What Happens to an Arithmetic Operation with Two Different Data Types in SQL Server Transact-SQL? Wh...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...