Will I be able to do a simple select inside a procedure like below-
procedure test
begin
select * from test_table;
end;
or should the select always have an into clause like below -
procedure test
begin
select abc from test_table
into abd;
end;
I'll appreciate any input on this.
Thanks,
Nandinir