Tagged Questions

2
votes
3answers
106 views

Oracle, how update statement works

Hi, Question 1 Can anyone tell me if there is any difference between following 2 update statements: UPDATE TABA SET COL1 = '123', COL2 = '456' WHERE TABA.PK = 1 UPDATE TABA SET COL1 = '123' WHERE …
0
votes
1answer
361 views

Problem looping data in a postgres function using %ROWTYPE

Hi all... I am trying to create a function in postgres that retrieves data from one table and inputs into another. I am using the %ROWTYPE type to store the temporary data from the select statement …