Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> comp.databases.theory -> Re: is concat a group by function?

Re: is concat a group by function?

From: André Gamache <andre.gamache_at_sympatico.ca>
Date: Fri, 04 May 2001 23:19:29 -0400
Message-ID: <3AF37141.68C0FE57@sympatico.ca>

Hi :

Why not making a sort instead of a grouping. SELECT
MGR,
CONCAT( EMPNO ) || ','
FROM SCOTT.EMP
ORDER BY MGR André

Aloha Kakuikanu wrote:

> SELECT
> MGR,
> CONCAT( EMPNO ) || ','
> FROM SCOTT.EMP
> group by MGR
>
> doesn't work, of course. Any other way to do it?
  Received on Fri May 04 2001 - 22:19:29 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US