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.

Oracle 9i Pivot ??

713388Jul 22 2009 — edited Jul 22 2009
Hey GuysNGals

Need some help with Pivot function. I have data like this

Col1 Col2 Col3
1 Option1 Val1
1 Option2 Val2
1 Option3 Val3
1 Option4 Val4
1 Option5 Val5
2 Option1 Val6
2 Option2 Val7
2 Option4 Val8
3 Option2 Val9
3 Option3 Val10
3 Option4 Val11
3 Option5 Val12

I need to pivot it like this, But how much ever I try, i cannot seem to getit right

Val Option1 Option2 Option3 Option4 Option5
1 Val1 Val2 Val3 Val4 Val5
2 Val6 Val7 - Val8 -
3 - Val9 Val10 Val11 Val12

I am using Oracle 9i and would prefer to do it in SQL

Can any one on u point me in the right direction?

Comments

StanislavL
Use your action event getSource() method/
801416
I know that I can use getSource() method to identify action event... but how can I identify the main panel it belongs to?
kleopatra-JavaNet
what's wrong with getSource().getParent() ? (apart from the missing type cast, obviously ;-)

Cheers
Jeanette
darrylburke
user1202074 wrote:
I have ‘n’ numbers of JPanel. And each panel contains certain number of sub-panels. Those sub-panels have actionlisteners.
:
Note that ‘n’ is unknown and main panels will be created dynamically. Now, if I attach actionListener with all of those sub_panels,
<tt>JPanel</tt>s can't have <tt>ActionListeners</tt>. What class of GUI component are you really talking about?

db
darrylburke
Cross posted
http://www.java-forums.org/awt-swing/36424-swing-how-indentify-certain-actions-sub-panels.html

Any more?

db
801416
when I said sub-panels, I meant Jtextfield, Jcombobox.
1 - 6
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 19 2009
Added on Jul 22 2009
3 comments
3,834 views