Hello Friends,

I have a query here.

select to_char(start_date,'mm/dd/yyyy hhAM') stdt,to_char(end_date,'mm/dd/yyyy hhAM')enddt,SHOWTYPE, DESCTV from SHOWS
where Start_date between
to_date('07242003000000','MMDDYYYYHH24MISS')
and to_date('07242003235959','MMDDYYYYHH24MISS')
group by to_char(start_date,'mm/dd/yyyy hhAM'),to_char(end_date,'mm/dd/yyyy hhAM'),SHOWTYPE, DESCTV
SQL> /

STDT ENDDT SHOWTYPE DESCTV
--------------- --------------- -------------------------------- -------------------------------
07/24/2003 05PM 07/24/2003 10PM JEWELRY Jewelry with Misty
07/24/2003 07AM 07/24/2003 12PM JEWELRY Jewelry with Angie
07/24/2003 03AM 07/24/2003 07AM GEMSTONES Gemstones with Geoff and Cheryl
07/24/2003 10PM 07/25/2003 03AM GEMSTONES Gemstones with Tommy
07/24/2003 12PM 07/24/2003 05PM JEWELRY Jewelry with Heidi

I need all the records from those days, but I get only 1,i dont get all the above mentioned above if i run the same select with link to another table for income. can somebody suggest?

Here is the second query
select to_char(a.start_date,'mm/dd/yyyy hhAM')stdt,to_char(a.end_date,'mm/dd/yyyy hhAM')
enddt,a.SHOWTYPE, a.DESCTV ,b.income_sales
from acntv.SHOWS a,intra.pbb_batch_sum b
where a.Start_date between
to_date('07242003000000','MMDDYYYYHH24MISS')
and to_date('07242003235959','MMDDYYYYHH24MISS')
and a.batch=b.batch
SQL> /

TO_CHAR(A.START TO_CHAR(A.END_D SHOWTYPE DESCTV INCOME_SALES
--------------- --------------- -------------------------------- ---------------------------------------------------------------- ------------
07/24/2003 07AM 07/24/2003 12PM JEWELRY Jewelry with Angie 158204.16


Thanks