MySQL ve PHP dayalı istatistikleri

0 Cevap php

Ben bir MySQL tablo değerlerine göre bazı istatistikler oluşturmak üzereyim. Bazı yıl sayıları foreach ay ve ayın foreach gününü oluşturmak istiyorum.

I could of course do all this manually but that doesn't seem like a good approach :) So anybody who has some ideas on how i generate these statistics.

OBS. Ben belirli bir ay boyunca herhangi bir MySQL kayıt yoktur olmasa bile yılın tüm ayını almak istiyorum.

BONUS: I got a little bonus question. The table which provides the data for the stats will get about 1000 records per week. I my head that seems like a bad approach over time. Anyone who has a suggestion for a better approach is welcomed. I've thought about creating CSV files instead.

Avans sayesinde bir sürü. Bu takdir ediyor!

EDIT: için sordum

+---------------+------------+------+-----+-------------------+----------------+
| Field         | Type       | Null | Key | Default           | Extra          |
+---------------+------------+------+-----+-------------------+----------------+
| id            | int(11)    | NO   | PRI | NULL              | auto_increment |
| member_id     | int(4)     | NO   |     | 0                 |                |
| status        | tinyint(1) | NO   |     | 0                 |                |
| timestamp     | timestamp  | NO   |     | CURRENT_TIMESTAMP |                |
+---------------+------------+------+-----+-------------------+----------------+

0 Cevap