Tagged Questions
2
votes
3answers
565 views
Oracle, how update statement works
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 ...
1
vote
1answer
183 views
How to pass an entire row (in SQL, not PL/SQL) to a stored function?
I am having the following (pretty simple) problem. I would like to write an (Oracle) SQL query, roughly like the following:
SELECT count(*), MyFunc(MyTable.*)
FROM MyTable
GROUP BY MyFunc(MyTable.*)
...
0
votes
1answer
34 views
In PL/SQL, can %ROWTYPE be re-used for another %ROWTYPE?
Or does it behave like a variable for which we have to use %TYPE?
declare
row1 emp%rowtype;
row2 row1%rowtype;
--row3 row1%type;
begin
null;
end;