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 error ora-01000: maximum open cursors exceeded
What are the constraints available in sql?
How to process query result in pl/sql?
Is sql scripting language?
Is left join faster than inner join?
How do you update sql?
What is database migration?
What is the best free sql database?
Is pl sql a scripting language?
Write a sql query to convert all character to uppercase after hypen.
How many types of sql are there?
what are wild cards used in database for pattern matching ? : Sql dba
Is left join and outer join same?
Is not equal in sql?
What is the difference between view and stored procedure?