Tagged Questions

1
vote
1answer
184 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;