create table winners
(year varchar(4) not null,
team varchar(30) not null,
constraint pk_winners primary key (year));
insert into winners (year,team) values ('1990','SAINTS');
insert into winners (year,team) values ('1991','SWANS');
insert into winners (year,team) values ('1992','DOGS');
insert into winners (year,team) values ('1993','MAGPIES');
insert into winners (year,team) values ('1994','TIGERS');
SQL> select * from winners;
YEAR TEAM
---- ------------------------------
1990 SAINTS
1991 SWANS
1992 DOGS
1993 MAGPIES
1994 TIGERS
5 rows selected.
SQL> select max(decode(year,'1990',team,'')) as "1990",
max(decode(year,'1991',team,'')) as "1991",
max(decode(year,'1992',team,'')) as "1992",
max(decode(year,'1993',team,'')) as "1993",
max(decode(year,'1994',team,'')) as "1994"
from winners
1990 1991 1992 1993 1994
---------- ---------- ---------- ---------- ----------
SAINTS SWANS DOGS MAGPIES TIGERS
1 row selected.
Sunday, April 28, 2013
Oracle How to pivot a table
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Aayiram Kannumai - Nokketha Doorathu Kannum Nattu Guitar tabs / chords for Aayiram Kannumai from the movie Noketha Doorath Kannum...
-
Music : God Almighty Direction : Manirathnam Lyrics : Vairamuthu Singer : Shakthishree Gopalan I know this is a Tamil song, but then I ...
-
Category: Malayalam Chords Written by IGH Admin Hits: 305 Song: Muthuchippi Movie: Thattathin Marayath Music: Sh...
-
Song: Nila Paithale Movie: Olympian Anthony Adam Music: Ousepachan ..D.......................G..........................
-
DataStage has two data types that can be used to store dates - DATE and TIMESTAMP. Transforming data often requires that we manipulate dat...
-
Abstract of Google Glass The emergence of Google Glass , a prototype for a transparent Heads-Up Display (HUD) worn over one eye...
-
Guitar tabs / chords for Azhalinte Azhangalil from Ayalum Njanum Thammil Song : Azhalinte Aazhangalil Movie : Ayalum Njanum Thammil (2012) ...
-
We've shown how to create DataStage jobs that can process tables and files generically. What we now need is a way to control those job...
-
orchdbutil is a command line utility that allows you to print out table table definitions. It connects to the database, queries the databa...
-
B--1--3-4--1-3-1-0-----1--3--4-1-3-0-1-------------- G-------------------0--------------------------------- thumbi vaa thumbak...
0 comments:
Post a Comment
Please Post your Comments..!