IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

can we use GROUP BY clause in declare cursor?


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
babu_hi

New User


Joined: 11 Apr 2006
Posts: 93

PostPosted: Wed Apr 16, 2008 6:27 pm
Reply with quote

can we use GROUP BY clause in declare cursor?
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Wed Apr 16, 2008 8:01 pm
Reply with quote

if it is a fetch only cursor
Back to top
View user's profile Send private message
shrivatsa
Warnings : 1

Active User


Joined: 17 Mar 2006
Posts: 174
Location: Bangalore

PostPosted: Wed Apr 16, 2008 8:10 pm
Reply with quote

From DB2 Manual I found below:-

A cursor will be automatically classified as
read-only if its SELECT statement is a join of multiple tables or includes such clauses as ORDER BY or GROUP BY.

The above statement says that we can use GROUP BY Clause. But remeber it will be read-only. You cannot do update.
Back to top
View user's profile Send private message
l.nethaji

New User


Joined: 16 Mar 2008
Posts: 90
Location: tamil nadu

PostPosted: Thu Apr 17, 2008 3:52 pm
Reply with quote

its right to delcare cursor using group by clause

declare cursor cur1

select c1,c2 from t1 group by c1,c2

then in the fetch u must give

fetch cur1

into :wc1

into:wc2

wc1 ,wc2 are working storage variables
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts To search DB2 table based on Conditio... DB2 1
No new posts Compare latest 2 rows of a table usin... DB2 1
No new posts Problem with IFTHEN=(WHEN=GROUP,BEGIN... DFSORT/ICETOOL 5
No new posts Splitting group records based on deta... DFSORT/ICETOOL 8
No new posts SORT HELP - SORT A COLUMN and GROUP B... DFSORT/ICETOOL 9
Search our Forums:

Back to Top