type type_name is table of varchar2(30) index by
binary_integer
for the above type you have to create a identifier...
like
identifier_name type_name;
for the above type you can use the below methods..like
first , last , prior, next , delege..etc...like this..
if you create a cursor...like
cursor cursor_name is select * from scott.emp;
is there any methods like above to use prior, fist , last ,
next , trim ,etc...
Answer Posted / sagar
Hi,
When you are using this:
cursor cursor_name is select * from scott.emp;
you can use
record_name cursor_name%rectype;
But I think the methods you mentioned like prior, fist ,
last ,
next , trim ,etc...are not present here..(Iam not sure)
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Explain lock escalation? : Transact sql
How to use sql statements in pl/sql?
How to combine two stored procedures in sql?
What is union and union all keyword in sql and what are their differences?
Explain the commit statement.
What is package in pl sql?
How do I save the results of sql query in a file?
what is union, minus and interact commands? : Sql dba
Define a temp table?
what is primary key? : Sql dba
What is memory optimized table?
what is the use of set statement in tsql? : Transact sql
How to get unique records from a table?
Differentiate between syntax and runtime errors.
How to install oracle sql developer?