Collections:
Update a Table Row with a RECORD in Oracle
How To Update a Table Row with a RECORD in Oracle?
✍: FYIcenter.com
If you have a RECORD variable with data fields matching a table structure, you can update a row in this table with this RECORD variable using the UPDATE ... SET ROW statement as shown in the sample script below:
CREATE TABLE emp_temp AS SELECT * FROM employees; CREATE OR REPLACE PROCEDURE FYI_CENTER AS manager employees%ROWTYPE; BEGIN SELECT * INTO manager FROM employees WHERE employee_id = 100; manager.employee_id := 299; INSERT INTO emp_temp VALUES manager; manager.first_name := 'FYI'; manager.last_name := 'Center'; UPDATE emp_temp SET ROW = manager WHERE employee_id = 299; DBMS_OUTPUT.PUT_LINE('# rows updated = ' || SQL%ROWCOUNT); END; / # rows updated = 1
2018-08-14, 832👍, 0💬
Popular Posts:
How To Recreate an Existing Index in SQL Server? If you want to change the definition of an existing...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How to execute statements under given conditions in SQL Server Transact-SQL? How to use IF ... ELSE ...