Hello
Can I have more than one variable assign to a select clause in a trigger. How? My stmt creates an error
SELECT FLD1 into VAR1, FLD2 into VAR2 FROM MYTABLE;
ERROR shown at the second INTO.
I tried to make it a cursor and it was successful .
But I would like to know if its possible or any other method???
Thanks & Regards
Reshmi
Can I have more than one variable assign to a select clause in a trigger. How? My stmt creates an error
SELECT FLD1 into VAR1, FLD2 into VAR2 FROM MYTABLE;
ERROR shown at the second INTO.
I tried to make it a cursor and it was successful .
But I would like to know if its possible or any other method???
Thanks & Regards
Reshmi
Comment