Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用してMySQLデータベースから、当日の深夜から現在までのすべてのタイムスタンプを選択していますtime()。すべてのタイムスタンプを時間でグループ化し、24個すべての配列の数を含む配列を返すにはどうすればよいですか?たとえば、最後に次のようなものを返す必要があります。
time()
Array(0 => 60, 1 => 104, 2 => 280, ..., 23 => 50)
SELECT *, CEIL(tstamp/3600)*3600 AS byhour FROM table WHERE <your where goes here> ORDER BY byhour