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
What is a common use of group by in sql?
Which is faster count (*) or count 1?
What is an inconsistent dependency?
Can we create a trigger on view?
How can a function retun more than one value in oracle with proper example?
How can you create an empty table from an existing table?
what is collation? : Sql dba
Can we use commit inside a trigger?
What is your daily office routine?
Can a foreign key be null?
How many types of tables are there?
Which command is used to delete a package?
What is the best sql course?
What is embedded sql with example?
How can you get sql*loader to commit only at the end of the load file? : aql loader