i have a table and the columns like
Start_date timestamp,
end_date timestamp,
id number,
cost number(10,2).
And the data which i inserted into the table 'll be like this
1,'2013-02-03 00:00:00','2013-02-03 00:00:00',75*0.06
1,'2013-02-04 00:00:00','2013-02-04 00:00:00',75*0.06
1,'2013-02-05 00:00:00','2013-02-05 00:00:00',75*0.06
1,'2013-02-06 00:00:00','2013-02-06 00:00:00',75*0.06
1,'2013-02-07 00:00:00','2013-02-07 00:00:00',75*0.06
1,'2013-02-08 00:00:00','2013-02-08 00:00:00',75*0.06
1,'2013-02-09 00:00:00','2013-02-09 00:00:00',75*0.06
and now i want to group the columns Start_date
and end_date
by Sunday to Saturday.
can you please help me on this.
Thanks in Advance.