Tagged Questions
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.*)
...