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

Home -> Community -> Usenet -> c.d.o.tools -> Re: GROUP BY

Re: GROUP BY

From: Irene Westervelt <iwesterv-no_at_span.mdsi.bc.ca>
Date: 1998/03/13
Message-ID: <01bd4ec3$3ab26140$a913f28a@pc354>#1/1

What are your trying to do? Do you want the date to be displayed? Then it must be part of your select. You cannot use a function in a group by clouse.
or just say group by datum.

(dit klink maar baie afrikaans)

iwesterv_at_mdsi.bc.ca

Koen Serry <kaho_at_planetinternet.be> wrote in article <35080863.26336515_at_news.planetinternet.be>...
> our table looks like this
>
> CREATE TABLE pagehits
> (
> host_id NUMBER(3) NOT NULL,
> url_id NUMBER(5) NOT NULL,
> datum DATE NOT NULL,
> aantal NUMBER(8) DEFAULT 0
> )
>
>
>
> we're trying to select data grouped by "day"
> what's wrong with this
>
> 'SELECT sum(aantal)
> FROM pagehits
> WHERE (datum = (SYSDATE-1))
> AND (hostid(host)=host_id)
> GROUP BY datum date(50) "dd/mon/yyyy"
>
> regards,
>
>
> Koen & Bart
>
Received on Fri Mar 13 1998 - 00:00:00 CST

Original text of this message

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