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
Are null values same as that of zero or a blank space?
Does sql*plus have a pl/sql engine?
what is sub-query? : Transact sql
What is data profiling in sql?
Can we join tables without foreign key?
What is parallel hint?
What is bulk compiling in pl/sql.?
What is the use of function "module procedure" in pl/sql?
What are dml commands?
What does seeding a database mean?
What is sql and also describe types of sql statements?
What is the difference between the sql*loader and import utilities? : aql loader
what is “go” in t-sql? : Transact sql
Is null operator in sql?
How to run sql statements with oracle sql developer?