vote up 0 vote down star

Hello.

I'm trying to make a report but I'm having problems with my archi nemesis SQL.

I have a table where the close date of a transaction is stored.

I want to know how many transaction per month there was so I did:

SELECT trunct( closedate, 'MONTH' ) FROM  MY_TRANSACTIONS

I'm using oracle.

I'm getting a list like this:

2002-09-01 00:00:00.0
2002-09-01 00:00:00.0
...
2002-10-01 00:00:00.0
2002-10-01 00:00:00.0
...
2002-11-01 00:00:00.0
2002-11-01 00:00:00.0

etc.

So I thought "If I add a COUNT( ) in the select and GROUP BY at the end of the statement that should do" but it doesn't. My guess is because each record is treated as a different value : -S

Any hint please?

Thanks.

flag

76% accept rate
@Joel: Thanks for the re-tags. Is this really PL-SQL? – Oscar Reyes Apr 6 at 19:06
@Oscar: Using TRUNC() in this way is specific to Oracle. But the issue you're seeing with GROUP BY is vendor-independent; this is how any SQL-compliant implementation works. – Bill Karwin Apr 6 at 19:12

1 Answer

vote up 9 vote down check

You want to group by all non-agg fields. And you don't want to truncate the date, you want the month part of the date.

so something like

select to_char(datefield, 'Month'), count(*) from ... group by to_char(datefield, 'Month');

link|flag
@Arnshea: Thanks. Do you know what's the oracle equivalent for "datepart"??? – Oscar Reyes Apr 6 at 19:05
to_char(datefield, 'Month') should do it – Arnshea Apr 6 at 19:06
@Arnshea: It did ( partially ) because I think is sum all decembers from the last years... – Oscar Reyes Apr 6 at 19:08
Try to_char(datefield, 'MONTH YYYY') – Eric Petroelje Apr 6 at 19:10
Thanks a lot... I was doing ( by intuition ) doing exactly that Eric. :) – Oscar Reyes Apr 6 at 19:10
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.