Answer Posted / a.jyothsna
declare
cursor cur_t is select * from test;
var_t test%rowtype;
begin
open cur_t;
loop
fetch cur_t into var_t;
exit when cur_t%notfound;
dbms_output.put_line('a: ' || var_t.a || ', b: ' ||
var_t.b);
end loop;
end;
/
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
What is use of term?
Explain lock escalation? : Transact sql
What is character functions?
What is sql clause?
What programs use sql?
What are the types of operators available in sql?
How can we make an if statement within a select statement?
What is difference between stored procedure and trigger?
What are data types in pl sql?
What is sql key?
What are the types of keys?
What is trigger in sql and its types?
what is an extent ? : Sql dba
How do I partition a table in sql?
Write the alter statement to enable all the triggers on the t.students table.