Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Having trouble of thinking of a query to accomplish this

655717Dec 9 2009 — edited Dec 20 2009
I'm trying to do a count of which GMCODE has the longest consecutive values equal to 'T' in the SETTING column and then list out all the GMCODES in descending order (from most to least). So here is some data for the sake of explaining what I want a little bit better...

Oracle : 10.2g

KEY
----------------------------------------
GMCODE - code of the game
SETTING - boolean value of true or false
EVNT_ID - id specific to an event that happened on during a specific sequence (SEQ)
SEQ - unique value which is never duplicated and which states the order in which everything occurs (kind of like a timestamp)
------------------------------------------
   	GMCODE	              SETTING	            EVNT_ID                              SEQ
	486609	                 F	                 1                            150
	486609	                 F	                 4                            151
	486609	                 T	                 1	                        152
        486609	                 T	                 2                             153
	486609	                 T	                 4                             154
	486609	                 T	                10                            155
	486609	                 F	                 1                             156
	253048	                 T	                 6                             201
	253048	                 F	                 4                              202
	253048	                 T	                 2                             203 
	253048	                 F	                 2                             204
	253048	                 F	                 7                             205
	486778	                 F	                 4                             245
	486778	                 T	                 4                             246
	486778	                 T	                 1                              247 
	486778	                 F	                 4                             248
So what i would want in the output would be
GAMECODE      COUNT(SETTING)
486609                         4
486778                         2
253048                         1
So to explain in a little more detail, from SEQ 152-155 the SETTING is equal to 'T' (SEQ 156 has a SETTING of 'F so we end the count there), so in turn I get a cout of 4 for gamecode 486609

Edited by: user652714 on Dec 9, 2009 8:11 AM
This post has been answered by 189821 on Dec 9 2009
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jan 17 2010
Added on Dec 9 2009
7 comments
4,882 views