Collections:
Use Values from Other Tables in UPDATE in Oracle
How To Use Values from Other Tables in UPDATE Statements in Oracle?
✍: FYIcenter.com
If you want to update values in one with values from another table, you can use a subquery in the SET clause. The subquery should return only one row for each row in the update table that matches the WHERE clause. The tutorial exercise below shows a good example:
UPDATE fyi_links SET (notes, created) =
(SELECT last_name, hire_date FROM employees
WHERE employee_id = id)
WHERE id < 110;
3 rows updated.
SELECT * FROM fyi_links WHERE id < 110;
ID URL NOTES COUNTS CREATED
---- ------------------------ --------- ------- ---------
101 http://dev.fyicenter.com Kochhar 999 21-SEP-89
102 http://dba.fyicenter.com De Haan 0 13-JAN-93
103 http://sqa.fyicenter.com Hunold NULL 03-JAN-90
This statement updated 3 rows with values from the employees table.
⇒ Error: Single-Row Subquery Returns More Than One Row in Oracle
⇐ Use Existing Column Values in SET Clause in Oracle
2020-01-21, 2610🔥, 0💬
Popular Posts:
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
How To Revise and Re-Run the Last SQL Command in Oracle? If executed a long SQL statement, found a m...
How to continue to the next iteration of a WHILE loop in SQL Server Transact-SQL? How to use CONTINU...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
How to download Microsoft SQL Server 2005 Express Edition in SQL Server? Microsoft SQL Server 2005 E...