select * from orders where odate between '2010-01-01'and
'2010-03-31' How do u fetch this into cursor?
Answers were Sorted based on User's Feedback
Answer / muneer
Declare orders_cur cursor
for
select * from orders where odate between '2010-01-01'and
'2010-03-31'.
Open orders_cur
fetch orders_cur....
Hi friends i think that will the procedure ...if any mistake
suggest me
| Is This Answer Correct ? | 4 Yes | 0 No |
In cursor program-1 can we create another cursor program-2 inside the cursor program-1.If yes how/no why ?
Is DECLARE TABLE in DCLGEN necessary? Why it used?
My SQL is not performing well. Describe how will you fine tune it?
What else is there in the PLAN apart from the access path?
How many clustering indexes can be defined for a table?
wht happens if we close cursor with cursor with hold option?
what is the soft code for deadlock ?
I have some 3 particular fields ..i want to know which all tables have those 3 fields. Is there any way to identify.. can we know by quering system tables..
What kind of database is db2?
How to create backup table in db2?
How to insert more than one record using insert?
How can record locking be achieved in those DB2 versions which do not support it?