From dondealy@teleport.com Sun, 24 Jun 2001 20:54:50 -0700 From: "Don Dealy II" Date: Sun, 24 Jun 2001 20:54:50 -0700 Subject: How to return Multi-row query into a single row? Message-ID: MIME-Version: 1.0 Content-Type: text/plain Sample Table   DocId     Integer DateVal   Date TextVal   Varchar2(40) NumVal    Number(10,0)     Sample Data   DocId    DateVal        TextVal        NumVal 12       01/15/2000     12                      Sally Smith    5                       Bob Brown 5                                      48702                5        07/22/2001 4                                      152       Desired result after SELECT...   DocId    DateVal        TextVal        NumVal 12       01/15/2000     Sally Smith 5        07/22/2001     Bob Brown      48702 4                                      152     How do I write a query to produce the "single row" result?        Thx - Don   e:  dondealy@teleport.com