Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: A How-To
Here's my test of Jeff's decode/max idea:
create table test
(record_key number
,id number
,value varchar2(10)
)
/
insert into test values
(2,1,'beetle');
insert into test values
(3,1,'dilbert');
insert into test values
(4,1,'funky');
insert into test values
(1,2,30);
insert into test values
(2,2,60);
insert into test values
(3,2,20);
insert into test values
(2,3,150);
insert into test values
(3,3,240);
select record_key,
max(decode(id,1,value,'')) name, max(decode(id,2,value,'')) age, max(decode(id,3,value,'')) weightfrom test
RECORD_KEY NAME AGE WEIGHT
---------- ---------- ---------- ----------
1 garfield 30 15 2 beetle 60 150 3 dilbert 20 240 4 funky
It works if not all the ids have data.
Won't work reliably if more than one value per id per employee is on file. However, if you had a "is_most_current" column and maintained it programmatically, you could filter on that to get only the latest version of a field's value. Don't think a date-timestamp would work for this purpose, you would have to do a max of a max. (I suspect the SQL would hurt our heads if it was workable. :)
-- http://www.freelists.org/webpage/oracle-lReceived on Mon May 23 2005 - 13:08:33 CDT
![]() |
![]() |