Ben farklı ekran türleri 15 dakikalık artışlarla sahip verileri görüntülemek için gerekiyor. Bana sıkıntı veren iki sorgu var. Bir yarım saat verileri gösterir saat diğer verileri göstermektedir. Tek sorun veri toplamlarını sorgular arasındaki değişiklik olmasıdır. Sadece zaman dilimlerinde AT, zaman dilimlerinde arasında olur verileri sayma değil.
Ex: There are 5 things that happen at 7:15am. 2 that happen at 7:30am ve 4 that show at 7:00am.
The 15 minute view displays all of the data.
The half hour view displays the data from 7:00am ve from 7:30am but ignores the 7:15am.
The hour display only shows the 7:00am data
İşte benim sorgular şunlardır:
$query="SELECT * FROM data WHERE startDate='$startDate' ve queue='$queue' GROUP BY HOUR(start),floor(minute(start)/30)";
ve
$query="SELECT * FROM data WHERE startDate='$startDate' ve queue='$queue' GROUP BY HOUR(start) ";
Ben ancak tüm veriler dahil olsun var gibi nasıl gruplar halinde verileri çekin?
Is the issue the way the data is stored in the mysql table? Currently I have a column with dates (2010-03-29) ve a column with times (00:00) Do I need to convert these into something else?