Please help.
I tried this, I don't know how to proceed. I need to give a select into statement for this.
TYPE ADDR_DATA IS TABLE OF ADDRESS%ROWTYPE
INDEX BY BINARY_INTEGER;
Select is, (only one record will come), and how can I use it further?
SELECT
* INTO ADDR_DATA
FROM
ADDRESS
WHERE
ADDR_DATA.PERSON_ID = 83;
It looks as if you're trying to bulk collect the data, which means you need to do;
On the other hand you're looking for (I think) only one row - id=83
which means you want something like: