我的表结构是
id order_id location time date
1 951 x 2/03/2013
2 951 x 13:00 2/03/2013
3 951 y 3/03/2013
我想在 php 中显示这些,并按日期分组,例如
Date 2/03/2013
Orderid 951 location x
Orderid 951 location x
Date 3/03/2013
Orderid 951 location y
我正在执行的mysql查询是
select * from table where order_id=951 GROUP BY date ORDER BY id ASC
但是这个查询只返回相同数据的第一行。我如何按日期类别显示所有重复。如何在 php 中使用它通过将日期作为单独的变量来显示数据。
我正在编辑问题,让您知道日期可以是我只想按组中的日期显示订单 ID 的任何内容,包括重复。