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 -> Anyone help me with this?

Anyone help me with this?

From: Andy <andy.konopka_at_camtronics.com>
Date: Fri, 13 Jul 2001 10:35:25 -0500
Message-ID: <HwE37.13$0B1.677@client>

Is there anyway to make this sql do the following using the truncate function in Oracle 8 and then get the count to work by formatting the date?

SELECT TRUNC(PLAN_S_DATE) as CallDate, Count(PLAN_S_DATE) AS TotalCalls

    FROM IFSAPP.ACTIVE_SEPARATE

   WHERE (((ORG_CODE='613')
      OR (ORG_CODE='614')
      OR (ORG_CODE='618')))
GROUP BY TRUNC(PLAN_S_DATE)
  HAVING TRUNC(PLAN_S_DATE) BETWEEN  TO_DATE('&From_Date_MMDDYY','MMDDYY')
     AND TO_DATE('&To_Date_MMDDYY','MMDDYY')

Current Output
Date                   Totalcalls
2001-05-22-00.00.00 1
2001-05-23-00.00.00 1
2001-05-29-00.00.00 1
2001-06-01-00.00.00 2
2001-06-04-00.00.00 2
2001-06-05-00.00.00 1

2001-06-12-00.00.00 1
2001-06-19-00.00.00 3

Desired Output

Date Totalcalls

05-22-2001 1
05-23-2001 1
05-29-2001 1
06-01-2001 2
06-04-2001 2
06-05-2001 1
06-12-2001 1
06-19-2001 3
Received on Fri Jul 13 2001 - 10:35:25 CDT

Original text of this message

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