Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have DataSet. it returns date, and value by date.

for ex:

01.01.2009   454
02.01.2009   785
03.01.2009   475
----------   ---
30.01.2009   523

I need new DataSet, that group by week. for ex:

1 Week 1-7   2017
2 Week 7-15  4586  
-----------------
5 Week 24-30 1482

Week begin from monday.

not importand only for this example, important that, how group by (x) initial DataSet.

Please, any Idea.

share|improve this question

1 Answer

up vote 1 down vote accepted

Either iterate by the original dataset, gather the info and enter it to the new dataset, or add a week column to the database, and query the table using group by to get the dataset that you want.

share|improve this answer
I'm interested in first variant. – loviji Dec 3 '09 at 15:35
1  
so just iterate through all the rows. if they are ordered by date it is even easier, create a new dataset with the new columns you need and build it row by row. – Dani Dec 3 '09 at 15:41
thanks, i'll try – loviji Dec 3 '09 at 16:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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