我有下表 -
S.No. (Auto Increment, Primary Key)
Timestamp (Records date in yyyy-mm-dd format)
type (Records the type of document Ex. 1,2,3,etc.)
Number (Records the serial number of a particular type of document)
现在我想生成一个表,我想在其中按时间戳对数据进行排序。基于type
我想在报告的左侧和右侧显示一些列。所以,我想订购我的结果集首先按时间戳排序,然后按类型排序。假设我想要左侧的 1、2、3 和右侧的 4、5、6。所以我想要在我的结果集中必须有左右交替的行。前任。
Timestamp Type
2012-01-01 1
2012-01-01 4
2012-01-01 1
2012-01-01 4
2012-01-01 1
2012-01-01 5
2012-01-01 1
2012-01-01 6
2012-01-01 2
2012-01-01 2
2012-01-01 2
我试图这样做,但没有得到想要的结果。这是我想要的最终结果——
时间戳类型 时间戳类型
2012-01-01 1 2012-01-01 4
2012-01-01 1 2012-01-01 4
2012-01-01 1
2012-01-02 2 2012-01-02 6
2012-01- 02 2 2012-01-02 6
2012-01-03 5
2012-01-03 5
2012-01-03 5